Dear experts
What is difference between
#header
div#header
Thanks
Page 1 of 1
Selectors
#2
Posted 18 January 2012 - 07:07 AM
#header is an id name that can be used with any element like these markups:-
(except that you should only use an id once on a page).
div#header can only be used in a div markup:-
(but only use it once on a page).
<h3 id="header">...</h3> <div id="header">...</div> <ul id="header">...</ul> <table id="header">...</table>
(except that you should only use an id once on a page).
div#header can only be used in a div markup:-
<div id="header">...</div>
(but only use it once on a page).
Share this topic:
Page 1 of 1
Help















