2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

docs: switch to fenced codeblocks (#31806)

This commit is contained in:
XhmikosR
2020-10-19 12:56:49 +03:00
committed by GitHub
parent 48177c946f
commit e6618a6ebb
43 changed files with 494 additions and 446 deletions
@@ -13,12 +13,12 @@ Elements with the `.invisible` class will be hidden *both* visually and for assi
Apply `.visible` or `.invisible` as needed.
{{< highlight html >}}
```html
<div class="visible">...</div>
<div class="invisible">...</div>
{{< /highlight >}}
```
{{< highlight scss >}}
```scss
// Class
.visible {
visibility: visible !important;
@@ -26,4 +26,4 @@ Apply `.visible` or `.invisible` as needed.
.invisible {
visibility: hidden !important;
}
{{< /highlight >}}
```