2014-09-24から1日間の記事一覧

CSS Flexible Box(webkit-box, webkit-box-flex)の挙動メモ

<html> <head> <style type="text/css"> .c0 { display: -webkit-box; } .c1 { border: 1px solid red; -webkit-box-flex: 1; width: 0; } </style> </head> <body> <div class="c0"> <div class="c1"> a b c d </div> </div> </body> </html> https://dl.dropboxusercontent.com/u/7334525/sandbox/20140924/sample1.html …