我正在尝试在我创建的某个字段中创建一个单句,每次我只是将字体变大,它就会弹出字段,我必须降低字体大小才能将其重新放入
我可以将字体大小设置得更大并同时保留在字段中吗? 我的代码:
HTML:
<div id="wrapper">
<h1 style=""> Nothing Created Yet </h1>
</div>
CSS:
#wrapper {
width: 1000px;
height: 120px;
margin-top: 100px;
border: 5px solid gray;
border-radius:500px;
margin-left: auto;
margin-right: auto;
font-family: Arial;
font-size:40px;
background-color: #F0EEF3;
border-color:red;
}
我得到了什么:
答案 0 :(得分:3)
首先需要删除margin
元素上的浏览器默认h1
样式:
#wrapper h1 {
margin: 0;
}
那么理想情况下,您应该为#wrapper
元素line-height
提供与height
相等的内容:
#wrapper {
...
height: 120px;
line-height: 120px;
}
答案 1 :(得分:0)
试试这个DEMO
#wrapper {
width: 1000px;
height: 120px;
margin-top: 100px;
border: 5px solid gray;
border-radius:500px;
margin-left: auto;
margin-right: auto;
font-family: Arial;
font-size:40px;
line-height:10px;
background-color: #F0EEF3;
border-color:red;
text-align:center;
}
答案 2 :(得分:0)
发生这种情况的原因是你为DIV设置了固定的宽度和高度,当你增加字体大小时,它就不再适合DIV了。所以,答案是在这样的固定大小的DIV中是不可能的。
答案 3 :(得分:0)
或者做 -added类到标题并将边距放到0并使文本居中 (jsfiddle.net/6GRGH /)