如何用css让一个边框自动居中
html文件<html><head><linkrel="stylesheet"type="text/css"href="5.css"></head><body><divc...
html文件
<html>
<head>
<link rel="stylesheet"type="text/css"href="5.css">
</head>
<body>
<div class="s2">
<div class="s1">梁山英雄排行榜</div>
<div><a href="#">宋江</a></div>
<div><a href="#">卢员外</a></div>
<div><a href="#">吴用</a></div>
<div ><a href="#">豹子头</a></div>
<div><a href="#">大刀关胜</a></div>
</div>
</body>
</html>
css文件
.s1{
font-size:100px;
color:yellow;
}
.s2{
border:1px solid red;width:600;height:200;margin:0 auto;
}
a:link{
color:red;
font-family:华文新魏;
text-decoration:none;
}
a:hover{
color:green;
font-family:宋体;
text-decoration:underline;
a:visited{
color:gray;
}
这样做出来后为什么边框没居中 展开
<html>
<head>
<link rel="stylesheet"type="text/css"href="5.css">
</head>
<body>
<div class="s2">
<div class="s1">梁山英雄排行榜</div>
<div><a href="#">宋江</a></div>
<div><a href="#">卢员外</a></div>
<div><a href="#">吴用</a></div>
<div ><a href="#">豹子头</a></div>
<div><a href="#">大刀关胜</a></div>
</div>
</body>
</html>
css文件
.s1{
font-size:100px;
color:yellow;
}
.s2{
border:1px solid red;width:600;height:200;margin:0 auto;
}
a:link{
color:red;
font-family:华文新魏;
text-decoration:none;
}
a:hover{
color:green;
font-family:宋体;
text-decoration:underline;
a:visited{
color:gray;
}
这样做出来后为什么边框没居中 展开
2个回答
展开全部
1、是不是width:600;height:200;的问题,没单位px;
2、题外话:
a标签的伪类注意正确的顺序:
a:link {……} a:visited {……} a:hover {……} a:active {……}
a:visited必须放于a:link之后,a:hover必须放于a:visited之后,不然是无效的。
2、题外话:
a标签的伪类注意正确的顺序:
a:link {……} a:visited {……} a:hover {……} a:active {……}
a:visited必须放于a:link之后,a:hover必须放于a:visited之后,不然是无效的。
更多追问追答
追问
怎么加了单位后边框也没往中间去
追答
看这个行不行,若不行,请说明你测试用的是什么浏览器。
2015-11-28
展开全部
width:600px;
height:200px;
height:200px;
追问
width和height这样指定的不是边框的大小吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询