0

I would like to know if there is a way to use a particular css page as styling for a tag. For example, instead of

<div class="header" style="position: absolute; text-align:left; right: auto; margin: 0 auto 20px; z-index: 1; width: 60%; height: auto; left:9%">

Is there a way to specify style.css for the div tag?

For example,
This style.css must ONLY apply to the div tag above. Also, is it possible for all tags contained within that div tag to follow the same specified css page?

4

4 回答 4

0

HTML:(包括在头部)

<link href='style.css' rel='stylesheet' type='text/css'/>

CSS:(在 style.css 文件中)

div.header{
    //your style here
}

或没有课程:

div{
    //your style here
}

但如果没有类,它将获得所有 div 标签,所以我推荐第一个代码

于 2013-10-31T17:46:29.483 回答
0

把它放在页面的标题中

<head>
     <link rel="stylesheet" href="/styles.css" type="text/css">
</head>
于 2013-10-31T17:39:13.180 回答
0

如果要为页面指定样式,请在呈现页面时包含该 CSS。

如果您想有多种方式呈现特定标签,请区分标签。

我不知道您可以直接应用于 CSS 的条件逻辑。

于 2013-10-31T17:39:46.433 回答
0

您可以创建所需的 CSS 页面,然后在类似这样的内容中创建所需的样式

div > table {

padding: 5px;

} 

这将使 div 的填充为 5,而它的子表的填充为 5

于 2013-10-31T17:50:49.397 回答