gpt4 book ai didi

html - CSS:如何在 block 中显示我的 div?

转载 作者:行者123 更新时间:2023-11-28 05:27:21 26 4
gpt4 key购买 nike

我需要将我的 div 放在 block 中,或者它命名的任何地方,以便在输入大量文本时保持其位置并且不会在下面显示,我附上了一些我想做的事情的截图

This is i want to do :(

编辑:对不起,我忘记发布我的代码了:/

CSS:

 .columnas{
overflow: hidden;
}
.full{
width:98%;
margin: 20px 1%;
background: #212121;
height: 40px;
}
.col-3{
width: 34%;
margin: 5px 1%;
background: #3b5998;
height: 40px;
float: left;
display: inline-block;
@media screen and (max-width: $tablet){
width: 47.86%;
}
@media screen and (max-width: $mobile){
width: 98%;
}
}
.col-4{
width: 26%;
margin: 5px 1%;
background: #ffff00;
display: inline-block;
//height: 40px;
float: left;
}
.col-7{
width: 70%;
margin: 5px 1%;
background: red;
display: inline-block;
//height: 40px;
float: left;
}

HTML:

<html>
<head>
<link href="sass/app.css" rel="stylesheet" type="text/css" />
<title>Frontend</title>
</head>
<body>
<div class="columnas">
<div class="full"></div>
<div class="col-7"><p>Text1</p></div>
<div class="col-4"><p>Text2</p></div>
<div class="col-3"><p>Text3</p></div>
<div class="col-3"><p>Text4</p></div>
</div>
</body>
</html>

最佳答案

我相信您正在寻找 overflow property :尝试将此 css 属性添加到您的 div 中:

溢出:滚动;

关于html - CSS:如何在 block 中显示我的 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38706619/

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