本帖最后由 clearwater 于 2019-12-28 11:21 编辑
求教:为什么. right li 的这个盒子,我没有给右外边距,但是显示的结果还是有一点外右面距? 第44行。(下面是截图)
[Asm] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>小米手机</title>
<style>
* {
margin: 0;
padding: 0;
}
li {
list-style: none;
}
/*记得有标尺拉线来量*/
.box {
width: 1224px;
height: 618px;
margin: auto;
background-color: pink;
}
.left {
/*高度属性是不继承的,一般盒子的高度默认由其内容撑开;而宽度属性也是不继承的,但是块级元素宽度默认独占一整行的宽度(即父盒子内容的宽度),行内元素和行内块元素的宽度是由其内容撑开*/
float:left;
width: 232px;
/*height: 618px; 写数字和写100%一样,100%比较好*/
height: 100%;
background-color: purple;
}
.right {
float:right;
width: 992px;
height:100%;
background-color: skyblue;
}
.right li {
float: left;
width: 234px;
height: 302px;
border: 1px solid red;
/*margin-left:10px;
margin-bottom: 10px;*/
margin: 0 0 10px 10px;
}
</style>
</head>
<body>
<div class="box">
<div class="left"></div>
<div class="right">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</div>
</div>
</body>
</html> |