CSS🔧/css font+text 관련
html textarea / placeholder / 줄바꿈
hyojinny
2022. 10. 7. 10:53
.inquiry_page .inquiry_area .th_top {
vertical-align: top;
padding-top: 24px;
}
.inquiry_page .inquiry_area textarea:focus {
outline: none;
}
placeholder도 이렇게 줄 바꿈을 할 수 있다. 본 textarea 내에서 placeholder을 줄 변경 하기 위해서는 or 이 필요
<tr>
<th class="th_top">내용<i class="star"></i></th>
<td>
<!-- rows 속성은 최초 입력가능 줄수 -->
<textarea rows="10" placeholder="가맹점 신청과 관련된 문의사항을 작성해 주세요. 문의하실 내용을 구체적으로 작성해 주시면 더욱 빠르고 정확한 답변을 드릴 수 있습니다."></textarea>
</td>
</tr>
textarea 한줄작성 엔터금지
리사이즈 깨질때
리사이즈 되지 않도록 초기화 코드 넣어주기
/* textarea 리사이즈기능 빼기 */
textarea {resize: none}