gpt4 book ai didi

javascript - 制作像 Tumblr 模板一样的图像网格

转载 作者:行者123 更新时间:2023-11-28 08:26:52 25 4
gpt4 key购买 nike

很抱歉提出这样愚蠢的问题,但我如何使用 HTML 和 CSS 制作像 Tumblr 这样的图像或文本网格?嗯,我的意思是这样的:enter image description here

最佳答案

这是一个非常宽泛的问题,但这里有一个基本的例子可以让你开始。您应该使用一些 float 列,每个列中都有框。

演示 - http://codepen.io/anon/pen/MYQjvQ

HTML:

<div class="wrapper">
<div class="col">
<div class="block">
</div>
<div class="block-l">
</div>
<div class="block">
</div>
<div class="block-l">
</div>
</div>
<div class="col col-last">
<div class="block-l">
</div>
<div class="block">
</div>
<div class="block-l">
</div>
<div class="block">
</div>
</div>
</div>
<div style="cf"></div>

CSS:

.wrapper{
width: 1000px;
margin: 0 auto;
}

.col {
float: left;
width: 49%;
}

.block {
width: 100%;
height: 110px;
background: #ccccff;
margin-bottom: 20px;
}

.block-l {
width: 100%;
height: 180px;
background: #ccccff;
margin-bottom: 20px;
}

.col-last {
float: right!important;
}

.cf {
clear: both;
}

关于javascript - 制作像 Tumblr 模板一样的图像网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28495013/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com