CSS样式表没有反映在我的aspx上

时间:2012-08-18 05:57:23

标签: asp.net css

我在Site.css中有以下CSS样式表

.img
{
    width: 1300px; 
    height: auto;
}

以及我的default.aspx中的以下代码

<div class="img">
 <img src="http://files.g4tv.com/images/blog/2008/06/18/633493967095957891.jpg" alt="DOMO" />
 <div class="desc">Add a description of the image here</div>
</div>

为什么我的图片没有反映出CSS中规定的宽度和高度?

3 个答案:

答案 0 :(得分:2)

您正在为您的部门申请课程。如果你想在分区内选择图像 改为:

.img img
{
    width: 1300px; 
    height: auto;
}

Example

答案 1 :(得分:1)

img上申请课程,而不是div

<div >
    <img class="img" 
         src="http://files.g4tv.com/images/blog/2008/06/18/633493967095957891.jpg"
         alt="DOMO" />
    <div class="desc">
                Add a description of the image here
    </div>
</div>

OR

你可以像这样创建你的CSS

img
{
    width: 1300px; 
    height: auto;
}

但它有一个缺点,即此css将应用于文档中的每个img。所以第一个更好。

答案 2 :(得分:1)

在你的风格中你设置div的宽度,它的类别为“img”。