html按钮CSS调整大小以填充div

时间:2013-08-21 07:43:17

标签: html css internet-explorer-8

我已经阅读了几个类似的问题,都涉及使用内联或类中的宽度和高度属性。但无论我怎么试试它,它都无法正常工作。

由于想要独立地对按钮和文本应用转换,我不得不在div上使用一个类,而在按钮上使用子类。剥离代码,按钮的宽度和高度不会填充周围的div。

我正在使用Visual Studio 2008并对IE8进行调试,如果这有任何区别的话。

HTML:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
    <link href="CSS/StyleSheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table border="0" cellpadding="0" cellspacing="0" width="100%" >
        <tr>
            <td >
                <h1>&nbsp;TITLE</h1>
            </td>
            <td style="width:150px;height:40px;">
            <div class="button-wrapper">
            <button ID="RetrieveButton2" title="tooltip" runat="server" serverclick="RetrieveButton_Click">Search</button>
            </div>
            </td>
            <td></td>
        </tr>
        </table>
    </div>
    </form>
</body>
</html>

CSS:

body
{
}

.button-wrapper
{
    width: 150px;
    height: 40px;
}

.button-wrapper button
{
    width: 100%;
    height: 100%;   
}

1 个答案:

答案 0 :(得分:0)

似乎是环保的。它没有在部署中发生,但它完全是学术性的,因为需求已经改变,因此不再使用此代码。