我正在为我的网站设计个人资料页面,我有以下div设置:
<div class="profile-first-block-wrap">
<div class="profile-first-block">
<h2 class="maintitle">My Profile</h2>
<ul>
<li>Username: <?php echo $_SESSION['user_name']?></li>
<li>Email Address: <?php echo $_SESSION['user_email']?></li>
<li>Account Type: <?php echo $UAC_base->getUACTitle()?></li>
</ul>
</div>
</div>
这是我的样式表中 profile-first-block-wrap 和 profile-first-block 类的内容:
.profile-first-block-wrap{
width: 100%;
padding-top: 50px;
padding-bottom: 50px;
background: #f5f5f5;
display: block;
}
.profile-first-block{
width: 1200px;
margin-left: auto;
margin-right: auto;
display: block;
}
现在,要记住的关键是我在我网站的其他页面上设置了完全相同的div设置,但是他们被称为 - 例如 - about-first-block-wrap 。这些类具有完全相同的样式,如果我改变我的div的类来说 - about-first-block-wrap 和 profile-first-block - 然后一切正常。
当我检查页面上的元素并选择我的div时,它甚至不会识别出类在我的样式表中具有样式的事实。我完全不知道为什么会这样。我之前在做另一个页面的时候遇到过这个问题,但当我玩弄东西时它只是修复了自己 - 虽然我不知道具体解决了我的问题。
有什么想法吗?