0

我有一个父 div 和一个子 div。例如,我想知道是否可以将子的宽度和高度表示为父 div 的百分比

<!doctype html>
<head>
<meta charset='utf-8' />
<title>Horizontal center a  div</title>
<style type='text/css'>
.one{
width:800px;
height:100px;
background-color:grey;
}
.two{
margin-top:30px;
margin-bottom:30px;
min-height:40px;
margin-left:30px;
width:90px;
background-color:pink;
display:inline-block;
}
</style>
</head>
<body>
<div class="one">
<div class="two">lorem ipsum</p>
</div>
</body>
</html>

看到它在行动http://jsfiddle.net/thiswolf/3qRgH/

外部 div(parent) 有一个height of 100px,我的子 div 有一个height of 40px。我想将我的孩子放在父主题内,所以,100px - 40px = 60px我将 60px 划分两次并分配子 divmargin-top:30pxmargin-bottom:30px;。但是我想表达边距以百分比形式。我如何以百分比表示边距。

4

2 回答 2

0

http://jsfiddle.net/thiswolf/5AZJD/

这似乎有效,但我还没有证明

<!doctype html>
<head>
<meta charset='utf-8' />
<title>Horizontal center a  div</title>
<style type='text/css'>
.one{
position:relative;
width:800px;
height:100px;
background-color:grey;
}
.two{
position:absolute;
top:30%;
bottom:30%;
min-height:40px;
margin-left:30px;
width:90px;
background-color:pink;
display:inline-block;
}
</style>
</head>
<body>
<div class="one">
<div class="two">lorem ipsum</p>
</div>
</body>
</html>
于 2013-01-31T11:58:43.460 回答
0

您可以以这种方式将 div 居中(已编辑):

<!doctype html>
<head>
<meta charset='utf-8' />
<title>Horizontal center a  div</title>
<style type='text/css'>
.one{
width: 800px;
background-color: grey;
}
.two{
min-height: 40px;
margin: 30% 355px;
width: 90px;
background-color: pink;
display: inline-block;
}
</style>
</head>
<body>
<div class="one">
<div class="two">lorem ipsum</div>
</div>
</body>
</html>

http://jsfiddle.net/3qRgH/2/

这是你要问的吗?

于 2013-01-31T11:39:50.850 回答