/    Sign up×
Community /Pin to ProfileBookmark

a dumb question

whats the point of using:

input.class {
/*style here*/
}

when you could just put:

.class {
/*style here*/
}

I havent noticed a difference in the functionality when trying both ways…… Thanks! ?

to post a comment
CSS

1 Comments(s)

Copy linkTweet thisAlerts:
@SamMar 05.2004 — here's an example, hope this helps.
[code=php]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
.aClass{
/*stuff here applies to both the div and the p*/
}
div.aClass{
/*stuff here only applies to the div*/
}
p.aClass{
/*stuff here only applies to the p*/
}
</style>
</head>
<body>
<div class="aClass">
Div Contents
</div>
<p class="aClass">
P Contents
</p>
</body>
</html>
[/code]
×

Success!

Help @The_Cheat 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.27,
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: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

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