我想创建一个具有两个元素的容器,并在图片中给出颜色。两者是不同的div,必须并排放置。我该怎么做?

css - 如何将div并排放置在容器中?-LMLPHP

这是我的代码:



<html>
	<head>
		<title>Testing</title>
		<style>
		 .container{
		 	width: 50%;
		 	height: 50%;
		 }
		 .sidenav{
		 	width: 25%;
		 	height: 100%;
		 	background-color: black;
		 }
		 .bgrnd{
		 	width: 75%;
		 	height: 100%;
		 	background-color: blue;
		 	float: left;
		 }
		</style>
	</head>
	<body>
		<div class="container">
			<div class="sidenav">
			</div>
			<div class="bgrnd">
			</div>
		</div>
	</body>
</html>

最佳答案

How about this:

<div class="container">
   <div class="sidenav">
      test
   </div>
   <div class="bgrnd">
      test
   </div>
</div>

CSS:

.container {
    width: 50%;
    height: 50%;
}
.sidenav {
    width: 25%;
    height: 100%;
    background-color: black;
    color: #fff;
    float: left;
}
.bgrnd {
    width: 75%;
    height: 100%;
    background-color: blue;
    color: #fff;
    float: right;
}

07-24 09:39
查看更多