CSS 页面左侧的空白边距

发布于 2024-10-01 12:31:24 字数 1389 浏览 3 评论 0原文

如何在页面左侧留出空白边距?屏幕截图位于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪菊怪哟 2024-10-08 12:31:24
#dokumentti {
    margin-left: 100px;
}
#dokumentti {
    margin-left: 100px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文