我想
为第一个使用 line-height 40px 的内容提供如下内容
对于第二个我使用 line-height 120px
这意味着随着内容的变化我必须改变行高有没有办法在不改变类的情况下在固定维度的 div 中进行这种类型的居中
我可以在没有 Javascript 的情况下做到这一点吗?如果我将高度用作 120px,我会得到这样的 div (我不想要这个)
div 的样式是
<style>
.rectangle {
postion:absolute;
box-shadow: 10px #333;
border-radius: 23px;
border-top-right-radius: 0;
border:6px solid;
block:inline;
line-height: 123.6px;
width:200px;
background-color: #444;
float: left;
margin: 5px;
text-align: center;
color:white;
font-weight:900;
text-decoration:none;
}
</style>