/    Sign up×
Community /Pin to ProfileBookmark

CSS whats the difference between # and .style5

Hi there just a quick on question on the difference between # and .style30
in css?

to post a comment
CSS

3 Comments(s)

Copy linkTweet thisAlerts:
@TheBearMayAug 24.2006 — 

# - looks for a matching id


. - looks for a matching class

<p id="myID">....

<p class="myClass">....
Copy linkTweet thisAlerts:
@BrettNooyenAug 24.2006 — Standards wise you can use classes over and over, however ID is unique to only one item.

<div id="style5"></div>

<div id="style5"></div>

<div id="style5"></div>

That = bad.

<div class="style5"></div>

<div class="style5"></div>

<div class="style5"></div>

That = good.
Copy linkTweet thisAlerts:
@KravvitzAug 24.2006 — [url=http://www.htmldog.com/guides/cssintermediate/classid/]Class and ID Selectors[/url]

[url=http://css-discuss.incutio.com/?page=ClassesVsIds]When should I use a class and when should I use an ID?[/url]

[url=http://www.informit.com/articles/article.asp?p=170514&rl=1]The Meaning of Semantics Take II: Naming Conventions for Class and ID in CSS[/url]

Multiple elements my belong to the same class and an element may belong to multiple classes. The X/HTML class attribute's value may be a space separated list of classes.
×

Success!

Help @Noodle7 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.4,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...