0
這是一種理論問題。我對基金會很熟悉,最近也對Boostrap很熟悉。我想知道網站上的每個元素都必須放在.row> .column(對於Foundation)或.container> .row> .col- -(對於Bootstrap),即使我不需要網格這個元素,例如當我想要在網站的底部角落固定「返回頂部」按鈕時(如下圖)?它在語義上是否正確?使用Foundation或Bootstrap網格時,是否每個元素都需要放置在行和列中?
html:
<button class='my-button'>scroll to top</button>
css:
.my-button {
position: fixed;
bottom: 30px;
right: 30px;
width: 30px;
height: 30px;
//some other styling
}