-
margin 可以用负值,向相反方向移动。查看全部
-
list-style:none清除ul前面的点查看全部
-
移动设置magin-top,调整字体line-height查看全部
-
一般都是用li。ul来构建导航菜单查看全部
-
ul{list-style:none}清除li原点查看全部
-
菜单<li>浮动后,<li>脱离文档流,导致<ul>将失去高度和宽度;如果需要对<ul>进行整体背景设置,首先要给<ul>定义宽、高。查看全部
-
background-position:30px 调整背景图位置查看全部
-
1.设置margin-top负值,而不是直接设置margin-bottom,是因为相对初始位置不变。【通用】 2.设置line-height,是因为之前的文字height为30px,现在容器height为40px,文字height没变,默认靠上,为了使文字居中改变行高。【特殊】查看全部
-
a:hover增加交互效果查看全部
-
我会回来的+1 让我去补一下JS查看全部
-
a:hover{ color:#fff;background-color:#F60;height:40px; line-height:40px; margin-top:-10px;}查看全部
-
display:block; 让标签变成块显示查看全部
-
文本缩进text-indent:10px;查看全部
-
基本的样式清除: *{margin:0;padding:0} 无序列表圆点去除: ul{list-style:none} 下划线去除: a{text-decoration:none} 文本缩进标签 text-indent 不会影响总体宽度(padding会) 需要将a标签设置为块元素,才能设高宽、hover效果 代码:a{display:block} hover格式 a:hover{}查看全部
-
这边要回来再看看查看全部
举报
0/150
提交
取消