展开全部
css中加边框,首先我们需要确定你要加边框的元素的id或者是id,还有你必须保证这个元素是块级元素,不然width和height对它是无效的,自然也没边框,通过加display:block;这个属性,来改成块级元素,具体看代码:
<html>
<head>
<style>
.div1{ //div本身就是块级,所以不需要,算span这中标签就是行级,所以需要display:block;
width:600px;
height:200px;
font-size:13px;
border:1px solid #f00;
}
</head>
<body>
<div class='div1'>
</div>
</body>
</html>
<html>
<head>
<style>
.div1{ //div本身就是块级,所以不需要,算span这中标签就是行级,所以需要display:block;
width:600px;
height:200px;
font-size:13px;
border:1px solid #f00;
}
</head>
<body>
<div class='div1'>
</div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
div{
width:200px; height:100px; border-bottom:1px solid #CCC;}
</style>
<body>
<div>div1</div>
<div>div2</div>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
div{
width:200px; height:100px; border-bottom:1px solid #CCC;}
</style>
<body>
<div>div1</div>
<div>div2</div>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询