正如您在标题中所看到的,我想在不使用Tables,Flexbox或Grid-system的情况下制作网格。但可以使用浮动。 它应该看起来像这样(确切的颜色不关心):
我找了一个类似的话题,但没有找到任何东西,这可以帮助我。
我有什么要改变的,它看起来像上面的图片? 那是我目前的代码:
/* ########################################################################## */
/* Global Settings */
/* ########################################################################## */
html, body{
width: 100%;
height:100%;
font-family: Arial, sans-serif;
font-size: 16px;
}
*{
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
}
/* ########################################################################## */
/* Clearfix-Hack */
/* ########################################################################## */
.clearfix::after{
content:"";
clear:both;
display: block;
}
/* ########################################################################## */
/* Entire Page */
/* ########################################################################## */
.entire-page{
margin: 0 15%;
}
/* ########################################################################## */
/* Square/Rectangle */
/* ########################################################################## */
.square,
.div{
width: calc((100% - 60px) / 3);
float: left;
}
.div{
height:422px;
}
.rectangle {
width: calc((100% - 60px) / 3 * 2 + 30px);
float: left;
}
.row{
margin-bottom: 30px;
}
.row .square:nth-of-type(1) {
margin-right: 30px;
}
.row .square:nth-of-type(3) {
margin-left: 30px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="src/css/styles4.css">
</head>
<body>
<!-- ########################################################################## -->
<!-- Entire Page -->
<!-- ########################################################################## -->
<div class="entire-page">
<!-- ########################################################################## -->
<!-- Square/Rectangle -->
<!-- ########################################################################## -->
<section>
<div>
<div class="row row-1">
<div class="square pic1"><img src="https://www1.xup.in/exec/ximg.php?fid=56589964"></div>
<div class="square pic1"><img src="https://www1.xup.in/exec/ximg.php?fid=56589964"></div>
<div class="square div"></div>
</div>
<div class="row row-2">
<div class="rectangle pic2"><img src="https://www1.xup.in/exec/ximg.php?fid=19960346"></div>
<div class="square div"></div>
</div>
</div>
</section>
</div>
</body>
</html>
答案 0 :(得分:0)