sass-site/source/documentation/values/booleans.html.md.erb

73 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-09-01 22:35:20 +02:00
---
title: Booleans
2019-03-05 01:24:31 +01:00
introduction: >
Booleans are the logical values `true` and `false`. In addition their literal
forms, booleans are returned by [equality](../operators/equality) and
[relational](../operators/relational) operators, as well as many built-in
2019-03-09 02:57:33 +01:00
functions like [`comparable()`](../functions/math#comparable) and
[`map-has-key()`](../functions/map#map-has-key).
2018-09-01 22:35:20 +02:00
---
<% example(autogen_css: false) do %>
@debug 1px == 2px; // false
@debug 1px == 1px; // true
@debug 10px < 3px; // false
@debug comparable(100px, 3in); // true
===
@debug 1px == 2px // false
@debug 1px == 1px // true
@debug 10px < 3px // false
@debug comparable(100px, 3in) // true
2018-09-01 22:35:20 +02:00
<% end %>
You can work with booleans using [boolean operators][]. The `and` operator
returns `true` if *both* sides are `true`, and the `or` operator returns `true`
if *either* side is `true`. The `not` operator returns the opposite of a single
boolean value.
[boolean operators]: ../operators/boolean
<% example do %>
@debug true and true; // true
@debug true and false; // false
2018-09-01 22:35:20 +02:00
@debug true or false; // true
@debug false or false; // false
2018-09-01 22:35:20 +02:00
@debug not true; // false
@debug not false; // true
===
@debug true and true // true
@debug true and false // false
2018-09-01 22:35:20 +02:00
@debug true or false // true
@debug false or false // false
2018-09-01 22:35:20 +02:00
@debug not true // false
@debug not false // true
2018-09-01 22:35:20 +02:00
<% end %>
## Using Booleans
You can use booleans to choose whether or not to do various things in Sass. The
[`@if` rule][] evaluates a block of styles if its argument is `true`:
[`@if` rule]: ../at-rules/control/if
<%= partial 'code-snippets/example-if' %>
The [`if()` function][] chooses returns one value if its argument is `true` and
another if its argument is `false`:
[`if()` function]: ../functions#if
<% example(autogen_css: false) do %>
@debug if(true, 10px, 30px); // 10px
@debug if(false, 10px, 30px); // 30px
===
@debug if(true, 10px, 30px) // 10px
@debug if(false, 10px, 30px) // 30px
2018-09-01 22:35:20 +02:00
<% end %>
<%= partial 'documentation/snippets/truthiness-and-falsiness' %>