What's the meaning of it ? ( CSS Question )

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
User avatar
Mds
Forum Contributor
Posts: 110
Joined: Tue Apr 22, 2008 8:56 pm
Contact:

What's the meaning of it ? ( CSS Question )

Post by Mds »

Hi all.
I saw something like this somewhere :

Code: Select all

.rightSide searchBox{
 
}
What's the meaning of it in CSS ?
It means we have a something like this :

Code: Select all

<div class="rightSide ">
    <div class="searchBox">
    </div>
</div>
Image

Thanks in advance
User avatar
VladSun
DevNet Master
Posts: 4313
Joined: Wed Jun 27, 2007 9:44 am
Location: Sofia, Bulgaria

Re: What's the meaning of it ? ( CSS Question )

Post by VladSun »

There are 10 types of people in this world, those who understand binary and those who don't
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Re: What's the meaning of it ? ( CSS Question )

Post by onion2k »

It means the CSS is broken. It would have to be ".rightSide .searchBox" to work..
Post Reply