CSS 页面左侧的空白边距
如何在页面左侧留出空白边距?屏幕截图位于 http://jaakkospage.comyr.com/testi.php 中,CSS 是下列的:
div.nav {
text-align: center;
}
div.nav ul {
background: #ADD8E6;
border: 1px solid #999;
display: inline-block;
line-height: 2.5em;
list-style: none;
margin: 0 auto;
padding: 0;
white-space: nowrap;
}
div.nav ul li {
display: inline;
margin: 0 1px;
padding: 0;
}
div.nav ul li a {
display: inline-block;
padding: .5em;
text-decoration: none;
vertical-align: middle;
}
div.nav ul li a:hover {
background-color: #48D1CC;
color: #C0FFC0;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>aaa</title> <link type="text/css" rel="stylesheet" href="styles.css" /></head>
<body>
<div id="dokumentti">
<div class="nav">
<ul>
<li><a href="http://www.aaa.freehostingcloud.com/register.php">Rekisteröidy</a>
</li><li><a href="http://www.aaa.freehostingcloud.com/login.php">Kirjaudu sisään</a>
</li></ul>
</div>
</div>
</body>
</html>
How can I make an empty margin to the left of my page? The screenshot is in http://jaakkospage.comyr.com/testi.php and CSS is the following:
div.nav {
text-align: center;
}
div.nav ul {
background: #ADD8E6;
border: 1px solid #999;
display: inline-block;
line-height: 2.5em;
list-style: none;
margin: 0 auto;
padding: 0;
white-space: nowrap;
}
div.nav ul li {
display: inline;
margin: 0 1px;
padding: 0;
}
div.nav ul li a {
display: inline-block;
padding: .5em;
text-decoration: none;
vertical-align: middle;
}
div.nav ul li a:hover {
background-color: #48D1CC;
color: #C0FFC0;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>aaa</title> <link type="text/css" rel="stylesheet" href="styles.css" /></head>
<body>
<div id="dokumentti">
<div class="nav">
<ul>
<li><a href="http://www.aaa.freehostingcloud.com/register.php">Rekisteröidy</a>
</li><li><a href="http://www.aaa.freehostingcloud.com/login.php">Kirjaudu sisään</a>
</li></ul>
</div>
</div>
</body>
</html>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)