HTML 태그 밖에 쓰지 못했었는데..
한번 DIV로 스킨도 바꿀겸 공부 해봐야지...
결론(?)은
DIV를 이용해서 나란히 하려면 float 특성을 사용해라.. 인가?
[링크 : http://yongja.tistory.com/48]
[링크 : http://aboooks.tistory.com/74]
[링크 : http://mobicon.tistory.com/158]
div class / id
[링크 : http://yongja.tistory.com/15]
[링크 : http://div.or.kr/css-studying/id,class...%A9]
+
2015.09.16
<p id="p01">I am different</p>
p#p01 {
color:blue;
}
<p class="error">I am different</p>
p.error {
color:red;
}
Use id to address single elements. Use class to address groups of elements.
[링크 : http://www.w3schools.com/html/html_css.asp]
table은 전체가 로딩되기 전에 렌더링 하지 않아 div를 추천
[링크 : http://egloos.zum.com/pnpcrow/v/5048788]
div / span 차이
[링크 : http://boogis.tistory.com/48]
'Programming > javascript & HTML' 카테고리의 다른 글
html event (0) | 2015.09.10 |
---|---|
jquery (0) | 2015.09.08 |
javascript closure (0) | 2013.01.07 |
javascript - DOM inspector in Firefox (0) | 2010.08.19 |
HTML의 style="filter:filter_name()" (0) | 2010.08.06 |