Results 1 to 3 of 3

Thread: Does nested CSS exist?

  1. #1
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Does nested CSS exist?

    Basically what I want to do is to make the top 20% of the screen orange, and make sure that some text always stays in that orange box.

    Would the synax be sumthin like this

    Code:
    .divtop
       {
    		width: 100%;
    		height: 25%;
    		border-color: black;
    		border-style: solid;
    		border-top-width: 1px;
    		border-left-width: 1px;
    		border-right-width: 1px;
    		border-bottom-width: 0px;
    		background: orange;
                         .texttop
                             {
                                 text-align: center;
                                 text-size: 30px;
                              }
         }
    
    <div class = "divtop">
         <p class = "texttop"> Some Text Here </p>
    </div>

  2. #2
    Join Date
    Aug 2006
    Posts
    239
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    .divtop .texttop {
    text-align: center;
    text-size: 30px;
    }

  3. #3
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    text-size isn't a property. You probably mean font-size, but beware using absolute units for font sizes! It causes your font to be (technically, although most browsers [IE excepted] will allow it anyway) impossible to resize, and thus cause problems to both visually-impaired users and users with an unusual monitor size or resolution: 30px in 1600&#215;1200, for example, is considerably smaller in real-life terms than 30px in 640&#215;480 on the same monitor.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •