Front-end/HTML
Attribute 우선순위
mooyou
2022. 2. 25. 20:50
728x90
300x250
SMALL
Attribute 값을 작성 할때는 큰따옴표로("")로 감싸준다.
Attribute 우선순위
- rel
- type
- href, src
- width, height
- target
- id
- name
- class
- style
- title, alt
- 기타 attribute
<a href="#" target="_blank" id="linkId" class="link" style="display:block;" title="바로가기링크">
바로가기
</a>
<img src="../img.gif" width="100" height="100" id="imgId" class="img" style="display:block;" alt="이미지 내용" title="이미지 툴팁" />
<input type="text" id="tfId" name="tfname" class="tf" style="width:100px;" title="텍스트 입력" size="10" maxlength="5" />
728x90
반응형
LIST