当前位置: 移动技术网 > IT编程>网页制作>CSS > CSS - base.css

CSS - base.css

2020年07月17日  | 移动技术网IT编程  | 我要评论

CSS - base.css

/*This is base stylesheet for common use to reset browser and provide common style of different tags*/
/*originator:*/
/*Date:2020.6.20*/


/*内外边距通常让各个浏览器样式的表现位置各不相同*/
body,div,ul,li,h1,h2,h3,h4,h5,h6,input,p,hr,button,article{margin: 0;padding: 0;}
body{font: 16px/1em "Open Sans",宋体,Arial,sans-serif;}
a{text-decoration: none;}/*去除下划线*/
li{list-style-type: none}
img{border: none}/*去除边框*/
/*Date:2020.7.13*/
input,select,textarea{box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}/*使输入框,下拉选择框,文本输入框的宽度一致*/
input,select,textarea{outline: none}/*去除输入框,下拉选择框,文本输入框的外边框*/
textarea{resize: none}/*去除文本输入框右下角可调节大小的箭头*/
/*Date:2020.7.16*/
input[type=number]{-moz-appearance: textfield;}/*去除在火狐浏览器中数字型输入框的上下小箭头*/

本文地址:https://blog.csdn.net/Leeroys_Zzzz/article/details/107376526

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网