弹性布局之定宽剩下填满
Posted 223zzm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了弹性布局之定宽剩下填满相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #container display: flex; width: 500px; border: 1px solid red; #box1 background-color: mediumspringgreen; width: 100px; flex-grow: 0; #box2 background-color: greenyellow; flex-grow: 1; </style> </head> <body> <div id="container"> <div id="box1"> 定宽 </div> <div id="box2"> 填满 </div> </div> </body> </html>
以上是关于弹性布局之定宽剩下填满的主要内容,如果未能解决你的问题,请参考以下文章