摘要:
css设置文本垂直居中 垂直居中的高必须等于元素的高才能居中 如下图: 代码演示: div{ height:60px; } p{ line-height:60px; /*垂直居中的高必须等于元素的高才能居中*/ } 阅读全文
摘要:
css边框圆角的方法,以搜素栏位例 如下图: 代码演示:input{border-top-left-radius:20px;/*上左圆角*/ border-bottom-left-radius:20px;/*下左圆角*/} 如下图: 阅读全文
摘要:
html 文本框css设置边框圆角如下图:css代码如下:input{border:1px solid black;width:295px;height:40px;border-radius:25px;} 阅读全文
摘要:
css ul li去除圆点 ul li{list-style-type:none; } 阅读全文
摘要:
css a标签去除下划线 a{text-decoration:none; } 阅读全文