laby_macros 0.1.2

HTML transformation macros for laby
Documentation
1
2
3
4
5
6
7
8
9
# Deprecated

The **`<nobr>`** [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) element prevents the text it contains from automatically wrapping across multiple lines, potentially resulting in the user having to scroll horizontally to see the entire width of the text.

> **Warning:** Although this element is widely supported, it was _never_ standard HTML, so you shouldn't use it. Instead, use the CSS property white-space like this:

```html
<span style="white-space: nowrap;">Long line with no breaks</span>
```