我有以下代码:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<style type="text/css">
body, html{
height: 100%;
}
#outer {
width: 90%;
height: 90%;
margin: 5% 5% 5% 5%;
background-color: #333;
}
#left-content {
height: 100%;
width: 50%;
}
#right-content {
height: 100%;
width: 50%;
}
</style>
<div id="outer" style="display: block">
<div id="left-content" style="display: block; background-color: red;">xx</div>
<div id="right-content" style="display: block; background-color: yellow;">xx</div>
</div>
</body>
</html>
外部 DIV 周围有一个边距,内部是两个 DIV。我希望两个 DIV 并排,但似乎一个低于另一个。
我怎样才能让他们并排?
另一个相关的问题。对于这样的事情,使用 display: table 和 table-cell 会更好吗?