0

我的CSS:

.uploadify {
    position: relative;
    margin-bottom: 1em; 
    width:264px;
    height:54px;
    cursor:pointer;
}

这应该使附加的 html 文件(已保存,因为它只能由我的站点的管理员访问)上的 div 具有指定的大小,但由于某种原因它没有。我怎样才能覆盖这个?我cursor:pointer在悬停的其他 div 上的 s 也没有注册

http://client.henrybuilt.com/Upload%20Download%20Files.htm

4

1 回答 1

2

width和属性被属性的height直接样式覆盖style

<div id="file_upload" class="uploadify" style="height: 30px; width: 120px;">

很容易发现这种错误。您只需要打开开发者控制台/开发者工具/检查器(至少在 Firefox、IE 和 Chrome 中可用)并选择有问题的元素。然后您将看到所有应用到元素的样式及其来源(即样式属性)。

于 2013-08-08T19:45:31.610 回答