1

角を丸くし、最初の行にグラデーションの背景 (列見出し用) を使用してテーブルのスタイルを設定するための CSS を含むテーブルがありますが、指定したにもかかわらず、グラデーションが丸みを帯びた角の外側にあふれていoverflow: hiddenます。

HTML:

<table id="tblIncidentQueue" class="DataTable">
        <tr class="TableHeaderFooter">
            <td colspan="5">
                <strong>Show </strong>
                <asp:DropDownList ID="drpNumOfResults" runat="server">
                    <asp:ListItem Text = "10" Value="10" ></asp:ListItem>
                    <asp:ListItem Text = "20" Value="20" ></asp:ListItem>
                    <asp:ListItem Text = "50" Value="50" ></asp:ListItem>
                    <asp:ListItem Text = "100" Value="100" ></asp:ListItem>
                    <asp:ListItem Text = "All" Value="All" ></asp:ListItem>
                </asp:DropDownList>
                <strong> entries</strong>
            </td>
            <td align="right">
                <img src="../images/Icons/Refresh.png" border="0" />
                <img src="../images/Icons/Down.png" border="0" />
            </td>
        </tr>
     </table>

CSS:

    .DataTable
{
    margin: 10px;

    -moz-border-radius : 10px; /* Firefox */
    -webkit-border-radius : 10px; /* Safari & Chrome */
    -khtml-border-radius : 10px; /* Linux browsers */
    border-radius : 10px; /* CSS3 compatible browsers */

    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    padding: 0px;
    border-spacing: 0px;
    overflow: hidden;
}

.TableHeaderFooter
{
    background: #eeeeee; /* Old browsers */
        background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* IE10+ */
        background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
        overflow: hidden;
}

どんな助けでも大歓迎です!

4

2 に答える 2

0

これらの td 要素のプロパティborder-radiusを TableHeaderFooter に設定する必要があります。

.TableHeaderFooter td:first-child {
     border-radius : 10px 0px 0px 10px; /* rounds the top and bottom left corner */
}

.TableHeaderFooter td:last-child {
     border-radius : 0px 10px 10px 0px; /* rounds the top and bottom right corner */
}

これで、グラデーションなどのオーバーフローした背景が表示されなくなります (この場合、overflow プロパティは役に立たないことに注意してください)。

役立つことを願っています

于 2014-02-13T01:07:49.803 に答える
0

すべてのバックグラウンド コードを .TableHeaderFooter から .DataTable に入れます。エッジが消えます。

.DataTable {
    margin: 10px;
    -moz-border-radius : 10px; /* Firefox */
    -webkit-border-radius : 10px; /* Safari & Chrome */
    -khtml-border-radius : 10px; /* Linux browsers */
    border-radius : 10px; /* CSS3 compatible browsers */
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    padding: 0px;
    border-spacing: 0px;
    overflow: hidden;
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}

.TableHeaderFooter {

}
于 2013-02-28T17:53:29.340 に答える