最赞回答 / 大胆的欠扁
<a>标签原本是行内元素,可以设置text-align,但是不能设置宽度和高度,当<a>标签设置为块级元素,会同时具有行内元素和块级元素的特征,即可设置text-align,又能设置宽高。
2018-07-25
已采纳回答 / 一叶红尘
1<img>里加上title属性写上你想要的就好了。2首先类选择器优先级高于标签选择器,其实这里ul也可以用类选择器表达但是就一个没有必要,类选择器出现在你需要对有相同元素的其中某个定义样式吧,就是定位更精准了我是这样理解的。
2018-07-19
最新回答 / 一叶红尘
"{ margin:0; padding:0; font-size:14px;}用*号;给a设置个float:left;就好。a:hover{ background-color:#f60; clear:#fff}这里是color颜色不是clear清理浮动。还有a用text-alig就好不用缩进了。这里很多时候错一个标点都不可以的 你得小心
2018-07-19
最新回答 / swaggyzhouyu
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>导航菜单</title><style type="text/css">*{margin:0; padding:0; font-size:14px;...
2018-07-02
已采纳回答 / MrThinco
利用css3可以这样操作:border:2px solid;border-radius:25px;不过css3做出来的圆角弧度那些肯定没法像图片那样可以做出各种理想型的弧度,如果是平时要求不高那么可以用css3来替代这个弧度圆角,但是,如果产品需求很高,要求的很严格,那还是用图片背景来做吧。这个两个方法都行,主要是看自己的产品适合需求。反正,两种方法都掌握,没坏处,技多不压身。加油!
2018-06-10
<style type="text/css">
*{margin:0; padding:0; font-size:14px;}
ul{ list-style:none; width:100px}
a{color:#333;text-decoration:none}
*{margin:0; padding:0; font-size:14px;}
ul{ list-style:none; width:100px}
a{color:#333;text-decoration:none}
<style type="text/css">
height:30px; line-height:30px; width:100px; background-color:#efefef; margin-bottom:1px;}
.nav li a:hover{ background-color:#F60; color:#fff}
</style>
height:30px; line-height:30px; width:100px; background-color:#efefef; margin-bottom:1px;}
.nav li a:hover{ background-color:#F60; color:#fff}
</style>
前端还要讲为什么怎么做?“我们之所以现在要用个 height 标签是因为要给它添个高度啊,我们之所以要用个 width 标签是因为要添个宽度啊”,您老又得说老师罗里吧嗦废话真多了
2018-05-15