【css】table-layoutについて(floatを使わず横並びにする方法)
2016年1月17日普段、boxを横並びに作成する際に「float」を使っているが、
他にも便利な方法があった!
1 2 3 4 5 6 7 |
ul{ display:table; table-layout:fixed; } ul li{ display:table-cell; } |
table-layout:fixedによって、
自動で幅が均等に調整されるらしい
参考サイト:
http://www.htmq.com/style/table-layout.shtml
http://cookbook.webcrow.jp/chapter/index.html