我有一个带有 .css 文件的母版页,其中包含一些说明。然后我有一个内容/子页面,上面有我只想在内容页面上显示的图像。我想用 css 更改该图像的属性。在我的内容页面中,我声明:
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<link href="Styles/imageTest.css" rel="stylesheet" type="text/css" />
</asp:Content>
...
<asp:Image ImageUrl="" ID="imageDetails" runat="server" /> //this one in the other contentplaceholder.
在我的 .css 文件中,我有:
#imageDetails
{
width:30px;
height:30px;
}
我可以在我的 css 文件中更改母版页上图像的属性,但不能更改此内容页面上的控件。
这是为什么?不能为每个内容页面都有一个 .css 并在那里更改内容吗?
如果我将图像放在母版页上,那么没有问题,但我不希望它在那里..