如何设计u ="#"在外部样式表中

时间:2014-09-06 02:47:44

标签: css jssor

我正在尝试删除内联css并将其包含在单独的样式表中。因为很清楚使用“#”和“。”对于id和class,我如何在外部设置“u”样式,如下面的示例所示。请提前获取任何帮助。

   <div u="loading" style="position: absolute; top: 0px; left: 0px;">
        <div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block;

            background-color: #000; top: 0px; left: 0px;width: 100%; height:100%;"> 
        </div> 
        <div style="position: absolute; display: block; background: url(../img/loading.gif) no-repeat center center;

            top: 0px; left: 0px;width: 100%;height:100%;">
        </div> 
    </div> 

1 个答案:

答案 0 :(得分:1)

尝试

div[u=loading] { position: absolute; top: 0px; left: 0px; }

这称为属性选择器(如果需要,您也可以执行*[u=...])。这不适用于早期的Internet Explorer(&lt; 7)或其他旧浏览器,但据我所知,它将适用于所有现代浏览器。