CSS Selector * does not work for Twitter Bootstrap -


i want change rules of twitter bootstrap .span class not work.

i want change direction of them , apply them border. here have out:

.span* {     direction: rtl !important;     border: 1px #ccc solid !important; } 

why not work?

put space between * , selector

.span * { } 

Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

c# - Must be a non abstract type with public parameterless constructor -