使用 Twitter Bootstrap,我有一个带有以下 css 的 div:
#notecard.hero-unit
{
background-image: url("../img/notecard.jpg");
background-size: cover;
width: 60%;
margin-left: 20%;
margin-right: 20%;
height: 1%;
position: relative;
text-align: center;
overflow: hidden;
}
在该 div 内部,我有不同数量的文本h2
,其中包含以下 CSS:
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: bold;
color: #333333;
text-rendering: optimizelegibility;
}
在#notecard.hero-unit
我使用中overflow: hidden;
,并且height: 1%
因为大多数情况下来自h2
滚动的文本比#notecard
- 所以正在处理该作业,#notecard
现在扩展到h2
.
但是,h2
只有一两条线的时候,#notecard
是很小的。我想#notecard
成为默认大小 - 假设300px
并且仍然接受溢出(如果有的话)。
我试过设置 height at#noteard
和 height at h2
to 300px
,但都忽略了我需要的溢出。
谢谢。