百科问答小站 logo
百科问答小站 font logo



以下 CSS 栅格布局除了用 table 以外,有什么其他的方法吗? 第1页

  

user avatar   Ivony 网友的相关建议: 
      

flexible box,你值得拥有:


       <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head>   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   <title></title>   <style>       .flex-container       {         display: flex;         flex-direction: column;         flex-wrap: wrap;         height: 440px;         width: 660px;       }          .flex-container section         {           box-sizing: border-box;           padding: 10px;           margin: 10px;           width: 200px;           height: 200px;           border: solid 1px;           border-radius: 5px;         }            .flex-container section:first-child           {             height: 420px;           }   </style> </head> <body>   <section class="flex-container">     <section>A</section>     <section>B</section>     <section>C</section>     <section>D</section>     <section>E</section>   </section>  </body> </html>      

基本上table布局能做到的,flexible box也都能做到,但flexible box的优越性在于可以彻底的分离布局和内容,就像上面这样。




  

相关话题

  哪个学校的网站首页最好看? 
  只会nodejs,但公司强制要求上php,是让他们招个phper,还是自己去学? 
  对于一个刚上大学的学生,要钱没钱要技术没技术,只有一个思路可以创业吗? 
  为什么知乎上大家都觉得前端自学比培训好? 
  github有没有办法前后端分两个项目,前端代码软连接到后端文件夹中? 
  为什么现代前端框架放弃了HTML的常规用法? 
  用 Canvas 实现虚拟列表的难点在哪里? 
  Mac 上最好的网页编辑工具是什么? 
  display:flex在移动端兼容性怎么样? 
  客户端 POST 错误,服务端应该回 200 还是 400? 

前一个讨论
Java 8的新特性lambda表达式是否比匿名内部类具有更好的可读性?
下一个讨论
为什么苹果能进入中国并且生存得很好,而谷歌却不行?





© 2024-11-24 - tinynew.org. All Rights Reserved.
© 2024-11-24 - tinynew.org. 保留所有权利