[.js] no category
base html 왁구
혜화초보
2019. 8. 3. 15:35
<html>
<head>
<title> </title>
<style type="text/css">
#table {display: table; width: 50%;}
.row {display: table-row;}
.cell {display: table-cell; padding: 3px; border-bottom: 1px solid #DDD; font-size: small; }
.col1 { width: 20%;}
.col2 {width: 20%;}
.col3 {width: 40%;}
.col4 {width: 20%;}
</style>
</head>
<script language="javascript" >
</script>
<body>
<div id="table">
<div class="row">
<span class="cell col1"> 1-1</span>
<span class="cell col2"> 1-2</span>
<span class="cell col3"> 1-3</span>
<span class="cell col4"> 1-4 </span>
</div>
<div class="row">
<span class="cell col1"> 2-1</span>
<span class="cell col2"> 2-2</span>
<span class="cell col3"> 2-3</span>
<span class="cell col4"> 2-3</span>
</div>
<div class="row">
<span class="cell col1"> 2-1</span>
<span class="cell col2"> 2-2</span>
<span class="cell col3"> 2-3</span>
<span class="cell col4"> 2-4</span>
</div>
</div>
</body>
</html>