diff --git a/docs/source/docs/text-style.blade.md b/docs/source/docs/text-style.blade.md index bda21a360..e2b27a7c9 100644 --- a/docs/source/docs/text-style.blade.md +++ b/docs/source/docs/text-style.blade.md @@ -5,8 +5,93 @@ title: "Style & Decoration" # Style & Decoration -
| Class | +Properties | +Description | +
|---|---|---|
| .italic | +font-style: italic; | +Italicizes the text within an element. | +
| .roman | +font-style: normal; | +Sets the text to roman (disables italics) within an element. | +
| .uppercase | +text-transform: uppercase; | +Makes all text uppercase within an element. | +
| .lowercase | +text-transform: lowercase; | +Makes all text lowercase within an element. | +
| .capitalize | +text-transform: capitalize; | +Capitalizes the text within an element. | +
| .normal-case | +text-transform: none; | +Disables any text transformations previously applied to an element. | +
| .underline | +text-decoration: underline; | +Underlines the text within an element. | +
| .line-through | +text-decoration: line-through; | +Adds a line through the text within an element. | +
| .no-underline | +text-decoration: none; | +Disables any text decorations previously applied to an element. | +
| .antialiased | +
+ -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + |
+ Set the font smoothing of an element to antialiased. | +
| .subpixel-antialiased | +
+ -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + |
+ Set the font smoothing of an element to subpixel antialiasing (the default). | +