In this site (password: dizi),如果用户点击题词按钮,它将打开一个新的弹出窗口。
如何让窗口大约是现在尺寸的一半?
我尝试添加固定大小:height: 200px;
但它不起作用。
<div class="col-sm-12">
<div class="item-block-title">
//some code HTML
</div>
<div class="fa fa-envelope-o">
//some code HTML
</div>
</div>
.item-popup-content {
background: #fff;
float: left;
padding-bottom: 0px;
border: solid 30px #fff;
width: 100%;
z-index: 99;
position: relative;
}
答案 0 :(得分:0)
尝试添加css:
.item-popup-content{
height: 200px; // set the height to whatever you want it
overflow: auto; // allows for scrolling bar for the contents that spills beyond your set height
}