css_text.md

CSS文本格式

文本颜色

<h1 style="color:red;">标题</h1>

文本对齐方式

<p style="text-align:center;">段落</p>
<p style="text-align:right;">段落</p>
<p style="text-align:justify;">段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落段落</p>

文本修饰

<a style="text-decoration:none;" href="https://lcfu1.github.io/Note/">链接</a>

<p style="text-decoration:overline;">段落</p>
<p style="text-decoration:line-through;">段落</p>
<p style="text-decoration:underline;">段落</p>

文本转换

<p style="text-transform:uppercase;">text</p>
<p style="text-transform:lowercase">TEXT</p>
<p style="text-transform:capitalize">text</p>

文本缩进

<p style="text-indent:50px;">test</p>