Heim >Web-Frontend >HTML-Tutorial >容器内的文本换行后的自动宽度_html/css_WEB-ITnose

容器内的文本换行后的自动宽度_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:11:261002Durchsuche

最近遇到一个这样的问题,
在一个限制max-width的容器内,当内部文本不够长时,容器的宽度能自动适应,但当文本长到换行时,容器的宽度则不能自动适应。
有没有朋友能帮忙看一下这么问题,要求是,最要不要动现在的样式,因为这些样式是公用的,最后是写些覆盖的样式。谢谢。附上提取的代码,方便大家直接调试的。

IE上看不到这个问题,Firefox等标准浏览器能看到这个问题。

<style>.large-thumbnail {width:590px;font-family:Arial, Helvetica, sans-serif;font-size:12px;}.notices {    float: right;    padding: 0 8px 32px 0;    text-align: right;    width: 120px;}.large-thumbnail .notices {    margin-right: -1px;    margin-top: -2px;    padding-bottom: 0;    width: auto;}.notices.urgency .skinny-urgency{    -moz-border-radius: 2px 0 0 2px;    background-color: #339900;    border: thin solid #BCBCBC;    color: #FFFFFF;    padding: 6px;}.msg-bubble {    color: #000000;    display: inline-block;    font-size: 11px;    max-width: 164px;    position: relative;    text-decoration: none;}</style><!-- 分行div --><div class="large-thumbnail">	<div class="notices urgency">		<a class="msg-bubble skinny-urgency">			<strong>Seulement 2 chambres restantes</strong><br> &agrave; ce prix		</a>	</div></div><br style="clear:both;"/><br style="clear:both;"/><br style="clear:both;"/><!-- 不分行div --><div class="large-thumbnail">	<div class="notices urgency">		<a class="msg-bubble skinny-urgency right-center">			<strong>Seulement 2 cham</strong><br> &agrave; ce prix		</a>	</div></div>


回复讨论(解决方案)

我在IE和firefox下试了试,结果相同

第一次遇到这个问题,
我觉得是这样的,
如果超过了max-width,那么容器的width就是 max-width所定义的宽度了,所以就不能自动适应了。


大家来讨论下。

IE与Firefox下的结果是不同的,IE8以下因为不识别max-width,所以再长的文本都只会一行显示出来,不会分行。

真没有办法吗?

支撑一下。。。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn