将混乱定义列表居中对齐



我想在我正在制作的网站上创建一个联系人部分,但问题是我的整个网站都有text-align:center,我正在使用联系人信息的定义列表。有没有一种方法可以让我的页面仍然使用包装器,但将文本向左对齐,而不会超出白色边框?

CSS:

@charset "utf-8";
html {
    text-align: center
}
#container {
    margin-left:auto;
    margin-right:auto;
    margin-top:50 auto;
    margin-bottom:50 auto;
    width:1000px;
    background-color:#666666;
}
#body1 {
    background-color:#666666;
    width:1000px;
    height:405px;;
    border:3px solid #FFFFFF;
    margin-top:50px auto;
}
#body2 {
    background-color:#666666;
    width:1000px;
    height:800px;;
    border:3px solid #FFFFFF;
    margin-top:50px auto;
}
#body3{
    background-color:#666666;
    width:1000px;
    height:500px;;
    border:3px solid #FFFFFF;
    margin-top:50px auto;
}
#body4{
    background-color:#666666;
    width:1000px;
    height:500px;;
    border:3px solid #FFFFFF;
    margin-top:50px auto;
}
#body5{
    background-color:#666666;
    width:1000px;
    height:500px;;
    border:3px solid #FFFFFF;
    margin-top:50px auto;
}
.navbar {
    margin:0px;
    background-color:#999;
    text-align:center;
    list-style:none;
    border-bottom:none;
    padding-left:0px;    
}

ul.navbar li {
    width:20%;
    display:inline-block;
}
ul.navbar a {
    color:white;
    font-size:20px;
    display:block;
    width:100%;
    margin:0px;
    padding:10px 0px;
    text-decoration:none;
}
ul.navbar a:hover {
    color:#000000;
    background-color:#CCC;
}
body {
    background-color:#333333;
}
#portrait {
    position:relative;
    top:20px;
    right:420px;

}
#headerhome {
    position:relative;
    bottom:130px;
    left:50px;
    font-size:30px;
    text-decoration:underline;
    font-family:arial;
    color:#CCCCCC
}
#goal {
    margin-left:40px;
    text-align:left;
    text-indent:40px;
    position:relative;
    bottom:110px
}
.tab {
    margin-left:40px;
}
#contact {
    position:relative;
    right:390px;
    text-align:left
}

HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Joe Scotto | Contact</title>
</head>
<body>
<div id="container">
<div id="body3">
<img src="banner.png" width="1000" height="100" />
<!--Navbar Start-->
<center>
    <ul class="navbar">
        <li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li><li><a href="contact.html">Contact</a></li><li><a href="services.html">Services</a></li><li><a href="biography.html">Biography</a></li>
    </ul>
</center>
<!--Navbar End-->
<div id="contact">
<dl>
    <dt><h3>Phone Number</h3></dt>
        <dd>XXX-XXX-XXXX</dd>
    <dt><h3>Email Address</h3></dt>
        <dd>XXXXXX@gmail.com</dd>
</dl>
</div>
</div>    
</div>
</body>
</html>

如果我正确理解你,那么你的问题可以用两件事来解决:

  • 在#contact-css中,在同一行的"text-align:left;"后面添加"!important"

  • 如果重叠,请添加边距。

如果这不能回答你的问题,请给我一个链接,这样我就可以看到发生了什么。

希望我能帮上忙。

#contact { text-align:left; }可能工作。position:relative;尝试删除。因为CSS从上到下,用新值重写属性。。检查此

如果你想在body3中保留"contact块"(居中),为什么在#contact中添加代码-"right:390px;",我看不出原因。所以如果你删除它,一切都会好起来的。

你试过这个吗?

dl {
    text-align: left;
}

编辑:我把上面的添加到你的css中,列表向左对齐。

从html标签中的css中删除text-align:center,并在每个div标签中添加text-align属性,这样您就可以根据需要进行对齐

相关内容

  • 没有找到相关文章

最新更新