코드:
HTML :
<div class="commentbox">
<input class="form-control form-control-lg" type="text" placeholder="영화URL"
aria-label=".form-control-lg example">
<div class="input-group mb-3">
<label class="input-group-text" for="inputGroupSelect01">별점</label>
<select class="form-select" id="inputGroupSelect01">
<option selected>--선택하기--</option>
<option value="1">⭐</option>
<option value="2">⭐⭐</option>
<option value="3">⭐⭐⭐</option>
<option value="4">⭐⭐⭐⭐</option>
<option value="5">⭐⭐⭐⭐⭐</option>
</select>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea"
style="height:300px"></textarea>
<label for="floatingTextarea">코멘트</label>
</div>
<div class="buttons">
<button type="button" class="btn btn-dark">Dark</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
</div>
</div>
CSS :
.commentbox {
box-shadow: 0px 0px 3px 0px gray;
padding: 20px;
width: 500px;
height: 500px;
margin: 20px auto 10px auto;
}
.input-group {
margin-top: 10px;
height: 40px
}
.buttons {
margin-top: 15px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.buttons>button {
margin-right: 5px;
⭐️모바일 최적화
✔️모바일에서의 가로 사이즈를 맞추기위해
항상 width를 500px 로 맞춘다.
✔️ 화면폭 500px 전에는 95%로 맞추다가 넘으면 500px로 전환:
width: 95%;
max-width:500px;
'스파르타 코딩 웹개발 종합반 > 1주차' 카테고리의 다른 글
1-13 JS 문법(콘솔/변수대입/리스트/딕셔너리/Split) (0) | 2022.05.11 |
---|---|
1-12 Java script 시작 (html 과 연동) (0) | 2022.05.11 |
1-10 Bootstrap_Card / 이모티콘 모음 (0) | 2022.05.11 |
1-9 CSS 속성(이미지 어둡게 / border/가운정렬) (0) | 2022.05.11 |
1-8 부트스트랩 시작 (0) | 2022.05.11 |