完整的源码
有完整的源码吗?
有完整的源码吗?
2018-11-06
/*在此定义相应的类选择器,并根据要求设置相关CSS属性*/
.maxbox{
width:960px;
background:#CFF;
}
.box1{
width:740px;
height:300px;
background:#C9F;
float:left;
}
.box2{
width:210px;
height:300px;
background:#FCF;
float:left;
}
</style>
</head>
<body>
<div class="maxbox">
<div class="box1"></div>
<div class="box2"></div>
<!--在此添加相应的div标签-->
</div>
举报