我的h1位于我的标题内,我想知道如何在调整浏览器大小时让我的标题响应并调整大小,以便内容不会溢出标题。如果它解决了我的问题,我完全可以重做我的代码。
#header {
max-height:110px;
background-color: darkorange;
border: 1px solid burlywood;
border-bottom: 1px solid black;
}
<h1> Guide to Painting:A guide to getting your painting projects done efficiently and quickly!</h1>
答案 0 :(得分:1)
根据“落在浏览器之外”的含义,解决方案可能是将最大高度换成最小高度。
#header {
min-height: 110px;
background-color: darkorange;
border: 1px solid burlywood;
border-bottom: 1px solid black;
}
<div id="header">
<h1>
This is a long text might overflows to the right if the window is narrow
</h1>
</div>
https://jsfiddle.net/8jnofysv/
不幸的是,您的问题陈述含糊不清,可能意味着很多事情,我的具体解决方案只能解决其中一个问题