Jump to content

<div> tags


yana

Recommended Posts

What is the difference between using ID and CLASS? Is it better to use one than another???
For example...

<div id="frame">...</div>  and <div class="frame">...</div>
#frame {
width:777px;
height:100%;
margin-right:0px;
margin-left:0px;
margin-top:0px;
margin-bottom:0px;
padding:0px;
text-align:left;
background-color: #FFF;
}

.frame {
width:777px;
height:100%;
margin-right:0px;
margin-left:0px;
margin-top:0px;
margin-bottom:0px;
padding:0px;
text-align:left;
background-color: #FFF;
}
Link to comment
https://forums.phpfreaks.com/topic/21160-tags/
Share on other sites

[quote author=AndyB link=topic=108507.msg436588#msg436588 date=1158594893]
id should only be used ONCE, class can be used many, many times, in the same file.
[/quote]

and, in addition to that, each element can only carry one id, but each tag could hold many, many classes as well
Link to comment
https://forums.phpfreaks.com/topic/21160-tags/#findComment-94033
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.