gtxyzz

css怎么设置分割线 css怎么设置字体颜色

gtxyzz web技术 2022-10-23 657浏览 0

本文操作环境:windows7系统、HTML5&&CSS3版、Dell G3电脑。

使用原生HTML+CSS制作一个分割线

代码如下:

分割线


设备:
1


     
     这里是一个分割线
     


设备:
2


.order {
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.order .line {
  display: inline-block;
  padding-top : 3px;
  width: 40%;
  border-top: 1px solid #666666;
}
.order .txt {
  color: #333333;
  font-size: 12px;
  vertical-align: middle;
}

效果如下图所示:

css怎么设置分割线 css怎么设置字体颜色

继续浏览有关 css教程 的文章
发表评论