html如何编写边长由5个*围成的正方形
2个回答
展开全部
HTML?那不是只有直接布局嘛,打上去,空格加*堆起来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-05-08
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
#out_div{
height:300px;
width:300px;
border:1px solid blue;
}
.divall{
float:left;
text-align:center;
}
#div1,#div4{
width:100px;
height:200px;
background:#FF3;
}
#div2,#div5{
width:200px;
height:100px;
background:#F90;
}
#div3{
width:100px;
height:100px;
background:red;
}
</style>
</head>
<body>
<div id="out_div">
<div id="div1" class="divall">1</div>
<div id="div2" class="divall">2</div>
<div id="div3" class="divall">3</div>
<div id="div4" class="divall">4</div>
<div id="div5" class="divall">5</div>
</div>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
#out_div{
height:300px;
width:300px;
border:1px solid blue;
}
.divall{
float:left;
text-align:center;
}
#div1,#div4{
width:100px;
height:200px;
background:#FF3;
}
#div2,#div5{
width:200px;
height:100px;
background:#F90;
}
#div3{
width:100px;
height:100px;
background:red;
}
</style>
</head>
<body>
<div id="out_div">
<div id="div1" class="divall">1</div>
<div id="div2" class="divall">2</div>
<div id="div3" class="divall">3</div>
<div id="div4" class="divall">4</div>
<div id="div5" class="divall">5</div>
</div>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询