Is it possible to make a div 50px less than 100% in pure CSS? I want the <div> to be only 50px less than 100%. I don't want any JavaScript.
|
|
Yes you can. Without using the IE's
Demo: http://jsfiddle.net/thirtydot/Nw3yd/66/ This will make your life so much easier. It is currently supported in the 3 main browsers: Firefox, Google Chrome (WebKit), and IE9: http://caniuse.com/calc |
|||||||||||||||||||||
|
|
A DIV automatically takes its parent's width. So there is no need to define any
Check this fiddle |
|||||||||||||||||
|
|
Another alternative is absolute positioning.
But, Sandeep's solution is the one you should usually use. Just
avoid overusing |
||||
|
|
|
My solution works with and without HTML:
css:
Compatibility: |
|||||
|
|
Using display
|
|||
|
|
|
Yes we can do it by making
Thanks |
|||||||||
|
protected by rynah Jul 6 '12 at 4:13
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


