gpt4 book ai didi

css - 如何使用 CSS 创建两列?

转载 作者:太空宇宙 更新时间:2023-11-04 16:17:05 26 4
gpt4 key购买 nike

我是 CSS 的新手,我想知道如何在包装器中制作两列和两行。第一行包含标题图像。这是我的代码:http://sudrap.org/paste/text/24958/

我想要实现的目标:enter image description here

编辑:这是整个 html http://sudrap.org/paste/text/24961/

最佳答案

您不需要所有的 HTML。它可以像这样简单:

<div id="main-wrapper">
<div class="left-box">
<h2>Oyunlar</h2>
<ul>
<li>...</li>
</ul>
</div>
<div class="right-box">
<h2>Sunumlar</h2>
<ul>
<li>...</li>
</ul>
</div>
...
</div>

使用以下 CSS:

.left-box, .right-box {
width: 15em;
float: left;
}
.right-box {
border-left:1px solid #999;
}
.right-box h2 {
margin-left: -1px; /* hide box border */
}
.box h2 {
background-color: #D8E9E6;
border-top: thin solid #97b4e0;
border-bottom: thin solid #97b4e0;
}

关于css - 如何使用 CSS 创建两列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7263832/

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