Properly lined up is better IMHO


div.row span.left
{
        float: left;
        text-align: left;
        font-weight: bold;
        color: #fff;
        width: 49%;
}

is much easier to work with especially when the program you're developing highlights matching open/close brackets.

Chris Stratford wrote:
Hey Everyone,

This is a great debate in Perl, C++, PHP...
Its all the same with CSS too!

I *HATE *It When People code with the curly brackets like this:

/div.row span.left {
        float: left;
        text-align: left;
        font-weight: bold;
        color: #fff; width: 49%;
}
/


I prefer to code like this:


/div.row span.left
{
        float: left;
        text-align: left;
        font-weight: bold;
        color: #fff;
        width: 49%;
}


/What is your preference????
*****************************************************
The discussion list for http://webstandardsgroup.org/
*****************************************************




Reply via email to