zoukankan      html  css  js  c++  java
  • 共享两个有用的网页布局表格 【有用】

    做网页设计的心得如下, 在布局方面可能会有好处

    边框布局

    <fieldset style="400px">
     <legend><span style="font size:12px">经典论坛</span></legend>

      <p align="left">
          <input type="checkbox" name="checkbox" value="checkbox">
          <span style="font size:12px">DW专栏</span> <br>
        </p>
        <p align="left">
          <input type="checkbox" name="checkbox2" value="checkbox">
          <span style="font size:12px">FW专栏</span></p>
        <p align="left">
          <input type="checkbox" name="checkbox3" value="checkbox">
          <span style="font size:12px">FLASH专栏</span></p>
     
    </fieldset>

     

     

    正式的布局
     <table cellpadding="0" width="100%" bgcolor="#F5F9FF" cellspacing="0" border="0">
            <tr>
                <td>
                    <table border="1" rules="rows" bordercolordark="#D3D8E0" bordercolorlight="#4F7FC9"
                        cellpadding="5" cellspacing="0" width="100%">
                        <tr>
                            <td align="left" colspan="4" bgcolor="#E3EFFF" height="22" class="subHeader">
                                Project Info
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <table cellpadding="0" width="100%" cellspacing="0" border="0">
                                   放入正式的东东
                                </table>
                          </td>
                        </tr>
                    </table>
                </td>
            </tr>
        </table>

     作为分隔行
        <table cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 10"
            bgcolor="#FFFFFF">
            <tr>
                <td>&nbsp;
                   
                </td>
            </tr>
        </table>


    作者:水木    
     
  • 相关阅读:
    递归函数之阶乘和字符串反转-基于R和Python
    ERROR getting 'android:label' attribute: attribute is not a string value
    CefGlue 学习杂记
    WinDbg 解决Font.ToLogFont AccessViolationExcetion
    使用ActivityManager的forceStopPackage方法结束进程
    (转) lucene+paoding亲密接触
    (转)Lucene中文分词图解
    (转)实战 Lucene,第 1 部分: 初识 Lucene
    Python时间戳的使用
    Andriod中Style/Theme原理以及Activity界面文件选取过程浅析
  • 原文地址:https://www.cnblogs.com/hsapphire/p/1664237.html
Copyright © 2011-2022 走看看