Jump to content
  • 0

Позиционирование


Dumle
 Share

Question

Здравствуйте :)

Хочу сделать так чтобы меню выходило за рамки таблицы. Примерно вот так..

efdb0d57f61c183dd1b461ce37a6bd81.jpg

Само меню запихано в див, как выравнить див по центру ровненько, чтоб как через margin:0 auto;?


#nav1{
width:700px;
z-index:2;
position:absolute;
top:30%;
left:450px;
}

вот так пытался добиться желаемого, но так не выравнить автоматически и при изменении размера окна браузера он все равно останется на том месте и будет ужас...)

какие есть пути решения?

Edited by Dumle
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

изображение не увидел

если правильно понял задачу, то


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css" >
html, body {
margin: 0;
padding: 0;
}
div {
position: relative;
text-align: center;
}
div div {
position: absolute;
display: inline;
width: 100px;
height: 100px;
background: red;
}
</style>
</head>
<body>
<div>
<div>
text
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Вот


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css" >
html, body {
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#box {
width: 800px;
height: 600px;
background: red;
margin: auto;
}
#nav {
overflow: hidden;
margin: 0 -30px;
background: gray;
}
#nav li {
float: left;
display: inline-block;
height: 40px;
}
</style>
</head>
<body>
<div id="box" >
<ul id="nav" >
<li>
<a href="#">menu</a>
</li>
<li>
<a href="#">menu</a>
</li>
<li>
<a href="#">menu</a>
</li>
<li>
<a href="#">menu</a>
</li>
</ul>
</div>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy