作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将我的 div 放在 block 中,或者它命名的任何地方,以便在输入大量文本时保持其位置并且不会在下面显示,我附上了一些我想做的事情的截图
编辑:对不起,我忘记发布我的代码了:/
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/
我是一名优秀的程序员,十分优秀!