我目前正在使用响应式网页设计技术设计一个网站,以便从手持设备访问时它也可以看起来不错。我使用 Bootstrap 来定位元素,并使用一些自定义 css 来设置导航栏、页脚等的样式。大多数元素包括导航栏都可以正常工作,除了我的页脚在缩小 web 时会与其他元素重叠-垂直页面。看看下面的代码。任何帮助将不胜感激。谢谢。
html
{
margin: 1%;
padding: 0;
}
html, body
{
height: 95%;
}
#body
{
height: 82%;
}
header, footer, nav, section
{
display: block;
}
footer
{
width: 100%;
list-style: inline-block;
position: static;
white-space: nowrap;
border-radius: 4px;
padding-top: 2px;
padding-left: 5px;
vertical-align: baseline;
}
footer p
{
padding: 0.2em;
color: White;
}
#image
{
padding: 0.2em;
}
.nav
{
position: relative;
margin: 20px 0;
width: 100%;
border-radius: 4px;
}
.nav ul
{
margin: 0;
padding: 0;
}
.nav li
{
margin: 10px 5px 10px 0;
padding: 0;
display: inline-block;
list-style: none;
}
.nav a
{
padding: 3px 12px;
text-decoration: none;
color: white;
line-height: 100%;
}
.nav a:hover
{
border: 1px solid #acdd4a;
font-weight: normal;
color: #ffffff;
text-decoration: none;
}
.nav a:active
{
border: 1px solid #acdd4a;
font-weight: normal;
color: #ffffff;
}
.nav .current a
{
border: 1px solid #acdd4a;
color: #fff;
border-radius: 5px;
}
下面是我的标记
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<header>
<div class="row-fluid">
<div class="span2">
<p>
Title of webpage
</p>
</div>
<div class="span8">
</div>
<div id="image" class="span2">
</div>
</div>
</header>
<nav class="nav">
<ul>
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li><a href="#">Admin</a></li>
<li>@Html.ActionLink("Help", "Contact", "Home")</li>
</ul>
</nav>
<div class="row-fluid" id="body">
<section>
@RenderBody()
</section>
</div>
<footer>
<div class="row-fluid">
<div class="span4">
<p>@User.Identity.Name</p>
</div>
<div class="span5">
</div>
<div class="span3">
<p>
© @DateTime.Now.Year</p>
</div>
</div>
</footer>
</body>
</html>