답변 1개
채택된 답변
+20 포인트
onlymilk47
7년 전
1. calc 를 이용방법
<div style="width:100%;">
<div style="float:left;width:150px;min-width:150px;">왼쪽박스</div>
<div style="float:left;width: calc(100% - 150px);">화살표박스</div>
</div>
<div style="clear:both"></div>
2. table 를 이용방법
<table style="width:100%;">
<tr>
<td style="width:150px;">왼쪽박스</td>
<td style="width:150px;">왼쪽박스</td>
</tr>
</table>
3. flex 이용방법 (구글링하시면 flex는 확인하실수 있습니다)
<div style="display:flex; width:100%; justify-content:space-between">
<div style="width:150px;min-width:150px;">왼쪽박스</div>
<div style="flex-grow:1;">화살표박스</div>
</div>
로그인 후 평가할 수 있습니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인