0

我的下拉列表按钮有问题..按钮看起来很奇怪..

这是图片:http: //imgur.com/9zHNM

HTML标记:

<td class="style 4">
    <select name="ctl00$ContentPlaceHolder1$ucPromotions1$ddlCompany"     
        id="ctl00_ContentPlaceHolder1_ucPromotions1_ddlCompany" 
        style="height:25px;width:167px;">
</td> 

CSS标记:

.style4
{
    width: 185px;
}

可能是什么问题呢?

编辑:问题已解决,这是我的 CSS 中选择的填充

我已经用这种风格解决了

<td class="style 4">
    <select name="ctl00$ContentPlaceHolder1$ucPromotions1$ddlCompany"     
    id="ctl00_ContentPlaceHolder1_ucPromotions1_ddlCompany" 
    style="height:25px;width:167px;padding:0 0;padding-top:0;paddingright-:0;padding- bottom:0;padding-left-value:0; ">
</td> 
4

2 回答 2

0

您的 CSS 属性.style4不会有任何影响,因为您已将 class 属性值设置为style 4. 删除空格:)

顺便说一句:您的 HTML 有一些错误。

这是有效的:

<td class="style4">
    <select name="ctl00$ContentPlaceHolder1$ucPromotions1$ddlCompany" id="ctl00_ContentPlaceHolder1_ucPromotions1_ddlCompany" style="height:25px;width:167px;">
        <option value="one">ONE</option>
        <option value="two">TWO</option>
        <option value="three">THREE</option>
    </select>
</td>

不允许仅用于 CSS 类和 ID 的数字。

于 2012-06-09T09:02:49.983 回答
0

It's kinda hard to help you without a living demo but, what if you adjust the same style on the class .style4 and the style of the select?

Set them both at width: 185px; for example.

Hope it helps!

于 2012-06-09T04:53:48.160 回答