Javascript examples for CSS Style Property:boxSizing
The boxSizing property sets elements to fit an area in a certain way.
Value | Description |
---|---|
content-box | Default value. Set drawing area to content box |
border-box | Set the drawing area to cover border |
initial | Sets this property to its default value. |
inherit | Inherits this property from its parent element. |
Item | Value |
---|---|
Default Value: | content-box |
Return Value: | A String, representing the box-sizing property of an element |
CSS Version | CSS3 |
Change the boxSizing property:
<!DOCTYPE html> <html> <head> <style> div.container {/*from w ww .j a va 2 s . c o m*/ width: 300px; border: 1px solid blue; } div.box { width: 150px; border: 3px solid red; float: left; padding: 10px; } </style> </head> <body> <div class="container"> <div class="box" id="box1">This is BOX1.</div> <div class="box" id="box2">This is BOX2.</div> <div style="clear:both;"></div> </div> <button onclick="myFunction()">Test</button> <script> function myFunction() { document.getElementById("box1").style.MozBoxSizing = "border-box"; /* Code for old Firefox */ document.getElementById("box2").style.MozBoxSizing = "border-box"; /* Code for old Firefox */ document.getElementById("box1").style.boxSizing = "border-box"; document.getElementById("box2").style.boxSizing = "border-box"; } </script> </body> </html>