zoukankan      html  css  js  c++  java
  • html 内联函数宽度设置

    width and/or height in tables are not standard anymore; as Ianzz says, they are depreciated. Instead the best way to do this is to have a block element inside your table cell that will hold the cell open to your desired size:

    <table>
        <tr>
            <td valign="top">
                <div class="left_menu">
                    <div class="menu_item">
                        <a href="#">Home</a>
                    </div>
                </div>
            </td>
            <td valign="top" class="content">Content</td>
        </tr>
    </table>

    css

    .content {
        width: 1000px;
    }
    
    .left_menu {
        background: none repeat scroll 0 0 #333333;
        border-radius: 5px 5px 5px 5px;
        font-family: Arial,Helvetica,sans-serif;
        font-size: 12px;
        font-weight: bold;
        padding: 5px;
        width: 200px;
    }
    
    .menu_item {
        background: none repeat scroll 0 0 #CCCCCC;
        border-bottom: 1px solid #999999;
        border-radius: 5px 5px 5px 5px;
        border-top: 1px solid #FFFFCC;
        cursor: pointer;
        padding: 5px;
    }

    原文地址:

    http://stackoverflow.com/questions/11090544/td-widths-not-working

  • 相关阅读:
    MCU开发之I2C通信
    hibernate特殊的映射
    Hibernate使用
    css设置让a标签充满整个li
    margin
    border属性
    列表
    链接样式
    相机内参外参
    tmux
  • 原文地址:https://www.cnblogs.com/silentjesse/p/4026085.html
Copyright © 2011-2022 走看看