标签:字母 改变 for turn 禁用 定义 标准 注意 工作
h1 { color: lawngreen; } p{ color: red; } p.ex{ color: rgb(0, 0, 255); }
<body> <h1>这是标题1</h1> <p>这是一个普通的段落。请注意,文本是红色的。页面中定义默认的文本颜色选择器</p> <P class="ex">这是一个类为"ex"的段落。这个文本是蓝色的。</P> </body>
h1 { text-align: center; } p.right { text-align: right; } p.main{ text-align: justify; }
<body> <h1>CSS text-align实例</h1> <p class="right">2019年6月1号</p> <p class="main">“当我年轻的时候,我梦想改变这个世界;当我成熟以后,我发现我不能够改变这个世界,我将目光缩短了些,决定只改变我的国家;当我进入暮年以后,我发现我不能够改变我们的国家,我的最后愿望仅仅是改变一下我的家庭,但是,这也不可能。当我现在躺在床上,行将就木时,我突然意识到:如果一开始我仅仅去改变我自己,然后,我可能改变我的家庭;在家人的帮助和鼓励下,我可能为国家做一些事情;然后,谁知道呢?我甚至可能改变这个世界。”</p> <p><b>注意:</b>重置浏览器窗口大小查看"justify"是如何工作的;</p> </body>
h1 { text-align: center; } p.right { text-align: right; } p.main{ text-align: justify; }
<body> <p>链接到:<a href="https://www.baidu.com">百度</a></p> </body>
h1 { text-decoration: overline; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; }
<body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> </body>
p.u { text-transform: uppercase; } p.l { text-transform: lowercase; } p.c { text-transform: capitalize; }
<body> <p class="u">this is some text.</p> <p class="l">this is some text.</p> <p class="c">this is some text.</p> </body>
p { text-indent: 50px; }
<body> <p>In my younger and more vulnerable years my father gave me some advice that I‘ve been turning over in my mind ever since. ‘Whenever you feel like criticizing anyone,‘ he told me, ‘just remember that all the people in this world haven‘t had the advantages that you‘ve had.‘</p> </body>
h1 { letter-spacing: 5px; } h2 { letter-spacing: -5px; }
<body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> </body>
p.small { line-height: 70%; } p.big { line-height: 200%; }
<body> <p> 这是一个标准行高的段落 这是一个标准行高的段落 大多数浏览器的默认行高约为110%至120%; </p> <P class="small"> 这是一个更小行高的段落。<br> 这是一个更小行高的段落。<br> 这是一个更小行高的段落。<br> 这是一个更小行高的段落。 </P> <P class="big"> 这是一个更大的行高的段落<br> 这是一个更大的行高的段落<br> 这是一个更大的行高的段落<br> 这是一个更大的行高的段落 </P> </body>
p.right { direction: rtl; }
<body> <p>一些文本。默认书写方向</p> <p class="right">一些文本。从右到左的书写方向</p> </body>
p { word-spacing: 30px; }
<body> <p>This is some text. This is some text.</p> </body>
p { white-space: nowrap; /* 不换行,在同一行显示!*/ }
<p> 这是一些文本。这是一些文本。这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。这是一些文本。这是一些文本。 </p>
img.top { vertical-align: text-top; } img.bottom { vertical-align: text-bottom; }
<p>一个<img src="fun.jpg" wdith="250px" height="250px">默认对齐的图像。</p> <P>一个<img src="fun.jpg" class="top" wdith="250px" height="250px">text-top对齐的图像。</P> <P>一个<img src="fun.jpg" class="bottom" wdith="250px" height="250px">text-bottom对齐的图像。</P>
标签:字母 改变 for turn 禁用 定义 标准 注意 工作
原文地址:https://www.cnblogs.com/Tony98/p/10959222.html