首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动应用 >

九宫格,该如何解决

2012-09-08 
九宫格做一个手机网页只要是九宫格样式的,不要用表格布局就行谢谢大家了在线等,不用漂亮,点击后能连接到别

九宫格
做一个手机网页只要是九宫格样式的,不要用表格布局就行谢谢大家了在线等,不用漂亮,点击后能连接到别的网页就行

[解决办法]

HTML code
<style type="text/css">.container { width: 300px; height: 900px }.container .item { float: left; width: 100px; height: 100px; }</style><div class="container ">    <div class="item" style="background: #CCC"></div>    <div class="item" style="background: #333"></div>    <div class="item" style="background: #aaa"></div>    <div class="item" style="background: #aaa"></div>    <div class="item" style="background: #CCC"></div>    <div class="item" style="background: #333"></div>    <div class="item" style="background: #333"></div>    <div class="item" style="background: #AAA"></div>    <div class="item" style="background: #CCC"></div></div> 

热点排行