0

我正在尝试在 Visual Studio 2010 中使用 Asp.net 和 CSS 设计网页。问题很简单,但我不知道如何解决它。我在我的页面中创建了一个标题,这个标题是一个 div,它链接到我的样式表以进行着色。我在 div 中放了一张图片,并添加了一个标签。现在经过一段时间将图像放在 div 中间并在其下放置文本,当我运行网站时,Label 完全离开 div 并坐在外面。我该如何解决?为了将来参考,我遵循什么技术或方法以使运行前的网页在运行后看起来总是一样的?我决定为每个页面创建一个样式表并将我所有的样式都放在那里。

对不起,就在这里。

<html xmlns="http://www.w3.org/1999/xhtml">
 <head runat="server">
<title></title>
<link href="LoginStyleSheet.css" rel="Stylesheet" type="text/css" />

</head>
 <body>
<form id="form1" runat="server">
<div class="HeaderDiv">
    <img alt="" class="Logo"  longdesc="http://localhost:17260/MECIT_Logo.png" 
        src="MECIT_Logo.png" />
        <asp:Label CssClass="Title" ID="WelcomeLabel" runat="server" Text="SSS"> 
         </asp:label>                                                                                                                                                                                                                                                                                                                                                                                                     
        </div>  
      </form>
    </body>
    </html>


 body 
 {
background-color:Gray;
 }
 .HeaderDiv
  {
background-color: #0099FF;
height: 121px;
  }
 .Logo
  {
 position:absolute;
 left:40%;
  }
  .Title
  {
 position:absolute;
 left:38%;
 bottom:83%;
 font-size:xx-large;
 font-family:Cambria;
 font-weight:bold;
 color:Navy;
 width: 336px;
 }
4

1 回答 1

1

我不明白为什么您绝对将元素定位在容器内,所有这些都可以通过边距和对齐来处理。这是我的建议:

点击这里查看小提琴

CSS:

 body 
 {
background-color:Gray;
 }
 .HeaderDiv
  {
background-color: #0099FF;
height: 121px;
    text-align:center;
  }
 .Logo
  {
margin:5 auto;
  }
  .Title
  {
 font-size:xx-large;
 font-family:Cambria;
 font-weight:bold;
 color:Navy;
 width: 336px;
 }​

HTML:

<div class="HeaderDiv">
    <img alt="" class="Logo"  longdesc="http://localhost:17260/MECIT_Logo.png" 
    src="http://www.mecit.edu.om/images/MECIT_Logo.png" /><br />
    //Used a <span> for the Label, as I believe that is what it renders as
    <span class="Title" id="WelcomeLabel">Some Title</span>                                                                                                                                                                                                                                                                                                                                                                                                    
        </div>  
于 2012-11-26T19:10:57.353 回答