1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- body ul{
- margin: 0;
- padding: 0;
- min-height: 100vh;
- }
- ul{
- background-color: blue;
- /* flex 控制内部元素的布局 */
- display: flex;
- /* flex-direction 调整当前flex元素主轴方向 */
- /* flex-direction: row-reverse; */
- /* flex-direction: column-reverse; */
- /* flex-wrap 当内部的所有flex元素一行内容不下的时候换行 */
- /* flex-flow 是 flex-direction flex-wrap 的缩写*/
- /* flex-flow: row-reverse wrap; */
- /* justify-content: flex-end; */
- /* justify-content: space-around; */
- /* flex-direction: row-reverse; */
- /* align-items: stretch; */
- }
- li{
- list-style: none;
- width: 100px;
- height: 100px;
- background-color: orangered;
- margin: 10px;
- /* float: left; */
- color: #fff;
- text-align: center;
- line-height: 100px;
- }
-
- </style>
- </head>
- <body>
- <!-- <a href="https://www.runoob.com/w3cnote/flex-grammar.html">flex 文档</a> -->
- <ul>
- <li>1</li>
- <li>2</li>
- <li>3</li>
- <li>4</li>
- <li>5</li>
- <li>6</li>
- </ul>
- </body>
- </html>
|