如何在不使用Tables,Flexbox或网格系统的情况下制作网格

时间:2018-01-31 01:06:36

标签: html css css-float css-position

正如您在标题中所看到的,我想在不使用Tables,Flexbox或Grid-system的情况下制作网格。但可以使用浮动。 它应该看起来像这样(确切的颜色不关心):

How it should look

我找了一个类似的话题,但没有找到任何东西,这可以帮助我。

我有什么要改变的,它看起来像上面的图片? 那是我目前的代码:

/* ########################################################################## */
/* 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>

1 个答案:

答案 0 :(得分:0)

你可以使用。有2行 - 即<tr>'s。第一行有3列 - 即<td>'s.第二行只有2 <td>'s,第一行的第一行有一个colspan = 2.

详细了解表here

根据需要应用样式。