好友
阅读权限20
听众
最后登录1970-1-1
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Flexdiv</title>
<style>
#first-div{background-color:gray;width:440px;height:200px;margin:0
auto;display:flex;justify-content:space-around;flex-wrap:wrap;align-
content:flex-left;}
#first-div p{background-color:green;height:50px;width:70px;}
#first-p{background-color:red;}
#third-p{background-color:pink;}
</style>
</head>
<body>
<div id="first-div">
<p id="first-p" >first-p</p>
<p id="second-p">second-p</p>
<p id="third-p">third-p</p>
<p id="fourth-p">fourth-p</p>
<p id="fifth-p">fifth-p</p>
<p id="sixth-p">sixth</p>
<p id="seventh-p">seventh-p</p>
<p id="seventh-p">eighth-p</p>
</div><br />
<div id="seconddiv">
</div>
</body>
</html>
-----------------------
代码如上,想请教一下first-p,third-p为什么不执行ID名改色,百思不得解。第二,子盒子折叠第二行,怎么样才能不居中,而让盒子七放到盒子一的下面,盒子八放到盒子二的下面。
由于是初学期,这么简单的问题都不能解决,谢谢各位大佬解答一下我的问题。 |
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|