html清除样式

html清除样式,第1张

你给span加个class不就行了吗?比如说

<span class="edit"></span>

css里写

.edit{.....}

标签选择器的优先级没有class高嘀!

body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,dd,input{

margin: 0

padding: 0

}aaa

body{font-size:12px}

img{border:none}

li{list-style:none}

input,select,textarea{outline:none}

a{text-decoration:none}

/* 清除浮动 */

.clearfix:after{content:""display:blockclear:both}

.clearfix{zoom:1}

在HTML页面中总会遇到比较恼人的麻烦,比如a标签在浏览器下默认的下划线跟字体颜色:

1.在div标签中的a标签和在浏览器下的样式

2.通过css查找到div里面的a标签,再通过text-decoration属性,去除默认下滑线,color属性添加颜色:

完工。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6152456.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-16
下一篇 2023-03-16

发表评论

登录后才能评论

评论列表(0条)

保存