我有一個相對塊,我需要從它上面放置一個動態文本。絕對位置的內聯塊在相對塊內摺疊
<div class='wrap'>
<div class='text'>This text...</div>
</div>
.wrap{
width: 300px;
height: 20px;
background-color: #e3e3e3;
position: relative;
margin-bottom: 60px
}
.text{
background: #27818d;
color: #fff;
display: inline;
position: absolute;
left: 312px;
}
這是一個小提琴讓你有一個想法。 http://jsfiddle.net/PmhM3/2/
如您所見,.text塊正在崩潰。有沒有解決方案來防止它像這樣崩潰?
這是最好的答案 – sachin
@sachin是的,的確。 – cleverketchup