其實我懶得問這個問題,因爲這應該是我最基本的東西。但是因爲我仍然無法解決這個問題,所以這對我來說很重要,但我無法幫助它。最小寬度不起作用的CSS樣式
是的,最小寬度也不適合我(也有一些對待有類似的問題)。我已經設置了內聯風格,向左浮動和溢出隱藏或不隱藏。但它仍然不能解決它。在%
<style>
div {
width:300px;
min-width:150px;
overflow:hidden;
background:yellow;
float:left;
display:inline;
}
</style>
<body>
<div>
This/is what I want
is/everything in this world beautiful to see for me
a/love is more happiness thing than money
text/me to say I miss you too
</div>
</body>
我認爲你應該檢查:http://stackoverflow.com/questions/8263543/ css-min-width-property-is-not-working – 2014-09-19 07:56:57
如果寬度爲300,則最小寬度150始終爲真。你期望什麼? – 2014-09-19 07:57:49
最小寬度值應該大於寬度。 – Jaison 2014-09-19 07:58:30