강의

멘토링

커뮤니티

Inflearn Community Q&A

xoqhal5367's profile image
xoqhal5367

asked

Introduction to HTML&CSS Web Development for Beginners

Image & Multimedia Tags - audio, video, a tags

제출하기 버튼

Written on

·

637

0

<input type="submit" value="제출하기" />


<button type="submit">제출하기</button>

위의 두 줄의 차이는 무엇일까요?

HTML/CSS

Answer 1

0

gymcoding님의 프로필 이미지
gymcoding
Instructor

안녕하세요 :)

기능적으로 동일합니다. 하지만 요소의 콘텐츠 적용여부 그리고 시멘틱하게 마크업을 한다라고 했을 때 <button>을 권장합니다.

input type submit vs button type submit 해당 키워드로 구글링 하시면 다양한 레퍼런스를 확인할 수 있습니다.

xoqhal5367's profile image
xoqhal5367

asked

Ask a question