我试图在缩略图上放置一些文本信息,信息框向左浮动,不应超过 max-width:85%;(缩略图)。图片中的缩略图区域为浅灰色,文本信息区域为黄色。
当文本超过 with 时,文本保持元素占满 85%,自动换行到下一行。我的问题是第一行有多余的空格,我想去掉。
在我的项目中,黄色区域包含缩略图标题,即使其中的单词很少,有时它也会在第一行留下很大的空白,看起来很糟糕。
有什么办法可以解决这个问题还是我要求太多?
HTML
<div id="main">
<div id="text">
<h3>Some text and line breaking words. Some text and line breaking words.
Soaaaaame text and line breaking words.<h3>
</div>
CSS
#main {
width:100%;
background-color:#ccc;
}
#text {
display:inline-block;
max-width:85%;
background-color:yellow;
}
编辑: text-align:justify 仅在有足够的单词时才起作用。看看这个:
有理由
没有