Version: Next
文本样式
首行缩进、上下左右居中
<body>
<p class="p1">
计算机2000年问题,又叫做“千年虫”、“电脑千禧年千年虫问题”或“千年危机”。缩写为“Y2K”。是指在某些使用了计算机程序的智能系统(包括计算机系统、自动控制芯片等)中,由于其中的年份只使用两位十进制数来表示
</p>
</body>
<style>
.p1{
text-align: center;/*左右居中*/
text-indent: 2em; /*首行缩进*/
height: 200px; /*上下居中*/
line-height: 200px;/*上下居中*/
background-color: blue;
}
</style>
下划线
<style>
.p1 {
text-decoration: underline;
}
</style>
删除线
<style>
.p1 {
text-decoration: line-through;
}
</style>
上划线
<style>
.p1 {
text-decoration: overline;
}
</style>
文本图片水平对齐
<style>
img, span {
vertical-align: middle;
}
</style>
文本阴影
text-shadow: 阴影颜色 水平偏移 垂直偏移 阴影半径
<style>
.p1 {
text-shadow: black 0.5px 0.2px 0.1px;
}
</style>