Delete space in bootstrap template
I have the following markup:
<div class="row-fluid">
<div class="span9"></div>
<div class="span3"></div>
</div>
+-----------------------+---------------+---+
| span9 contents here | span3 content | ->|-----space appearing here
+-----------------------+---------------+---+
How to remove the right side spacing. I can’t see the addition and / or value of the field, but also a space appears?
Update:
I found the reason he showed the space! I added the following css
body, [class*="span"] {margin: 0 !important; padding: 0 !important;}
So without removing this css, can I remove the space?
0
2 answers