2013-12-03 61 views

回答

1

嘗試刪除

white-space: nowrap;

從CSS的

#slide-container

DEMO FIDDLE

0

如果你打算使用「section」標籤,你需要指定一個寬度。否則,我會建議使用DIV標籤。我相信你的iissue是段標籤沒有寬度,並且不會根據內容重新調整大小。

請參閱「how to float the section tags in html5」瞭解有關float +章節標籤的信息。

0

你根本就換你的H1

<div style="float:left; width:300px;"> 
    <h1>Presentation</h1> 
</div> 
<div style="float:left"> 
    <h1 >page number</h1> 
</div> 
<div style="clear:both"></div> 
0

火狐拒絕具有相同父元素之下存在非浮動元素內聯顯示浮動元素。 (火狐始終使用display:block;爲浮動的元素。)

要麼父元素上使用position:relative;和使用絕對定位爲h1 S,或浮動兩者「演示」和「頁碼」。