zoukankan      html  css  js  c++  java
  • 用div做有序列表,非常重要!!!

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <style type="text/css">
    #apDiv1 {
         position: absolute;        //第一个Div
    left: 0px; top: 0px; width: 100%; height: 54px; z-index: 1; background-color:#3FF; } #apDiv2 {   position:relative; margin:auto; width: 80%; height: 54px; z-index: 2; background:#F66; } .liebiao{ position:relative; float:left; width: 20%; height: 54px; z-index: 2; background-color:#0F3; overflow:hidden; } .hang{ position:relative; float:left; width: 20%; height: 54px; z-index: 2; background-color:#0F3; } #apDiv4 { position: absolute; left: 0px; top: 54px; width: 100%; height: 114px; z-index: 2; background-color:#F93; } </style> </head> <body> <div id="apDiv1"><div id="apDiv2"> <div id="apDiv3" class="liebiao" onmouseover="this.className='hang'" onmouseout="this.className='liebiao'" > <div id="apDiv4"> <p>第一行</p> <p>第二行</p> </div> 列表</div> <div id="apDiv3" class="liebiao" onmouseover="this.className='hang'" onmouseout="this.className='liebiao'" > <div id="apDiv4"> <p>第一行</p> <p>第二行</p> </div> 列表</div> <div id="apDiv3" class="liebiao" onmouseover="this.className='hang'" onmouseout="this.className='liebiao'" > <div id="apDiv4"> <p>第一行</p> <p>第二行</p> </div> 列表</div><div id="apDiv3" class="liebiao" onmouseover="this.className='hang'" onmouseout="this.className='liebiao'" > <div id="apDiv4"> <p>第一行</p> <p>第二行</p> </div> 列表</div> </div> </div> </body> </html>
  • 相关阅读:
    Object Modeling
    数据库的比较
    关系数据库与非关系数据库
    结构化查询语言-SQL
    SQLite
    acid (数据库事务正确执行的四个基本要素的缩写)
    UITableView设计思想 考察
    复杂软件的考虑点与UITableView
    设计模式与哲学
    复杂对象的组装与创建-建造者模式
  • 原文地址:https://www.cnblogs.com/275147378abc/p/4491131.html
Copyright © 2011-2022 走看看