Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 913741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:36:30+00:00 2026-05-15T17:36:30+00:00

I develop websites since last two years now and I have hard time learning

  • 0

I develop websites since last two years now and I have hard time learning CSS (just spend a whole day creating a login box like twitter…). And sooner or later I fall back to table layout, and get things done (for almost everything I dig deep in to other’s source code and Google like hell… but I wish I know how to do it the way I normally figure out my programming problem instead of Google all day…).

And even after sometime if I achieve goal to create a perfect layout, and go back to IE for testing, everything is messed up.

I am the only guy developing it, so normally 70% of my time spend on design and 30% on programming.

I think I need to learn something more so that I spend less time adjusting my layouts and more time program it.

How you all programmer+designer work? And, how to master CSS?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T17:36:31+00:00Added an answer on May 15, 2026 at 5:36 pm

    How you all programmer+designer work?

    When working with CSS, I find it is best to design and build the site first for a standards compliant browser (My preference is FireFox). Then, when you have it looking right in that, check it for Internet Explorer and other browsers.

    For a design of any complexity, unfortunately, there will be time spent with multiple browsers open fixing a rule until it is consistant.

    And, how to master CSS?

    There are several improtant things to wrap your head around that will make your CSS life easier:
    The first I would learn is the Box model. That’s the official W3C article on the subject, which is quite long, so I’ll include an image below as well, which simplifies it a bit:

    alt text

    It’s important to note that browsers calculate this differently.

    Once you know what is causing things to size themselves, layouts should be easier to achieve in the same style as tables.

    The second that helped me wrap my head around what was going on was specificity This article helped me a lot with working this out. The essential summary is that each type of selector (element, class, id) has a weight attributed to it and if an element has a css value with a higher weight, then it will nt be overwritten.

    #id 0,1,0,0

    .class 0,0,1,0

    p 0,0,0,1

    1,0,0,0

    So, it doesn’t matter what your css files say, an inline style gets priority.
    Example:

    a {color: red;}                                               (0,0,0,1)
    .class1 a {color: blue;}         Overwrites red               (0,0,1,1) 
    #id1 a {color: green;}           Overwrites blue              (0,1,0,1) 
    #id1 .class1 a {color: yellow;}  Overwrites green             (0,1,1,1) 
    #id2 a {color: red;}             Overwrites green, NOT yellow (0,1,0,1) 
    #id1 #id2 a {color: black;}      Overwrites yellow and red    (0,2,0,1) 
    

    I’d still read the article. Twice.

    The third thing to learn is how to support previous browsers (like IE6) and the bugs with which they will plague you. I am a fan of this site: http://www.positioniseverything.net/
    They cover, with clarity and solutions, a great many of the browser bugs you will encounter when implementing cross-browser support with CSS.

    Some of the bugs you will likely encounter with IE6 are:

    • The 3px float bug.
    • The double margin bug.
    • The peekaboo bug.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.