That sound's great, but looking through your cleaned version I realize that
you only removed the hacks like * and not the entire property, so for
example:

Your version for row-fluid class:

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
  margin-left: 2.127659574468085%;

  margin-left: 2.074468085106383%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Bootstrap's version:

.row-fluid [class*="span"] {

  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
  margin-left: 2.127659574468085%;

  *margin-left: 2.074468085106383%;

  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

That means that you use the second property declaration of the margin,
which is meant to be used only in IE7, in all other browsers.

I really like the idea of removing hacks, but to make the framework work as
it should you have to move all those hacks in different files
(bootstrap-ie7, bootstrap-ie8....) and include them with conditional
comments in your head section.


Raul.








On Sat, May 25, 2013 at 3:10 AM, Fabrizio Salmi <[email protected]>wrote:

> I spent 2 nights cleaning bootstrap.css from w3c css errors (it's now
> compliant with wcag and US/EU privacy standards too in this pre-alpha fork).
> Hope to be useful for anybody like me who need to create a totally
> compliant website with a great nice and responsive framework which
> bootstrap is (tnx to all devs for this milestone) ;)
> Shared on Github: https://github.com/fabriziosalmi/bootstrap-w3c/
>
> On Friday, April 5, 2013 11:32:04 PM UTC+2, Olga Maraeva wrote:
>
>> Thank you for this topic. I I just ran my website http://b.pusku.com/ th*
>> *rough the 
>> http://jigsaw.w3.org/css-**validator/<http://jigsaw.w3.org/css-validator/> 
>> and
>> i saw thw mistakes like  filter, zoom and -webkit-keyframes. I think you
>> shouldn't worry about your mistakes.
>>
>>
>> 2013/3/27 Henry Finkelstein <[email protected]>
>>
>>> thanks!
>>>
>>>
>>> On Tue, Mar 26, 2013 at 2:52 PM, Richard Hajdu <[email protected]>wrote:
>>>
>>>> I guess it's no use for you now a year later, but the validation fails
>>>> because it uses hacks and vendor prefixes and alike, just ignore css
>>>> validation results for the bootstrap css files.
>>>>
>>>>
>>>> On Sunday, September 30, 2012 6:14:51 AM UTC+2, Henry Finkelstein wrote:
>>>>>
>>>>> Hey team,
>>>>>
>>>>> I just ran a website I built on Bootstrap (www.PriceBuilders.com)
>>>>> through the w3c CSS validator and it gave me a ton of errors.  Should I be
>>>>> at all worried about that?  Will the CSS errors impact my SEO in any way?
>>>>>
>>>>> Common sense says no on both accounts, but I figured I'd check with
>>>>> the brains of the community before writing it off completely.
>>>>>
>>>>> Cheers!
>>>>> -Henry
>>>>>
>>>>  --
>>>> You received this message because you are subscribed to a topic in the
>>>> Google Groups "twitter-bootstrap" group.
>>>> To unsubscribe from this topic, visit https://groups.google.com/d/**
>>>> topic/twitter-bootstrap/**GRkh0qbYgPc/unsubscribe?hl=en<https://groups.google.com/d/topic/twitter-bootstrap/GRkh0qbYgPc/unsubscribe?hl=en>
>>>> .
>>>>  To unsubscribe from this group and all its topics, send an email to
>>>> twitter-bootst...@**googlegroups.com.
>>>>
>>>> For more options, visit 
>>>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
>>>> .
>>>>
>>>>
>>>>
>>>
>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "twitter-bootstrap" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to twitter-bootst...@**googlegroups.com.
>>>
>>> For more options, visit 
>>> https://groups.google.com/**groups/opt_out<https://groups.google.com/groups/opt_out>
>>> .
>>>
>>>
>>>
>>
>>  --
> You received this message because you are subscribed to the Google Groups
> "twitter-bootstrap" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to