div 정렬 2단 * 2열
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 1,370회 작성일 22-03-26 22:25본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>alignment practice</title>
<style>
.parent{
width: 100%;
margin: 10px auto;
}
.first {
border: 1px solid red;
float:left;
width:25%;
box-sizing: border-box;
}
.second{
border: 1px solid green;
float:left;
margin-left: 5%;
width:25%;
box-sizing: border-box;
}
.third{
clear:both;
float:left;
border: 1px solid blue;
width:25%;
box-sizing: border-box;
}
.force{
border: 1px solid blue;
float:left;
margin-left: 5%;
width:25%;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="parent">
<div class="first">first</div>
<div class="second">second</div>
<div class="third">third</div>
<div class="force">force</div>
</div>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.