CSS - 重叠时标题字体较小

时间:2018-06-19 00:46:01

标签: javascript html css overlap

如果标题与另一个元素重叠,如何减少标题的字体大小?

我目前正在使用:word-break: break-all;但重叠仍然存在。

P.S。我仍然是初学者,如果这个问题听起来太容易,我很抱歉。

我的代码:

.container{ position: absolute; top: 0; left: 0; padding: 5%; } 

.container2{ position: absolute; bottom: 0; margin-bottom: 30px; width: 100%; }

基本上,当我在.container中有<h2>时,如果文本太长,它将在.container2中的<h2>文本上重叠。如何避免这种情况或正确调整文本大小?

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
div#header{
    font-weight: 500;
    padding: 0;
	  margin: 0;
    color: rgb(41, 40, 40);
    background-color: rgb(248, 248, 248);
}

p{
    font-size: 50pt;
    text-align: center;
    color: rgb(63, 61, 61);
    font-style: normal;
	  font-variant: normal;
    font-weight: 400;
}
p1{
    font-size: 20pt;
    text-align: center;
    color: rgb(63, 61, 61);
    font-style: normal;
	  font-variant: normal;
    font-weight: 400;
}
&#13;
        <div class="header">
        TEXT
            <p>TEXT</p>
            <p1>TEXT</p1>
        </div>
&#13;
&#13;
&#13;