Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> .div1 { box-sizing: content-box; width: 400px; height: 50px; padding: 50px; border: 5px double #1c87c9; } .div2 { box-sizing: border-box; width: 400px; height: 50px; padding: 50px; border: 5px dashed #8ebf42; } </style> </head> <body> <h2>Beispiel für box-sizing</h2><hr /> <h3>box-sizing: content-box (voreingestellt):</h3> <div class="div1">Die Breite für dieses Element div ist auf 400px eingestellt. Somit beträgt die volle Breite 400px + 10px (linker und rechter Rand) + 100px (linke und rechte Polsterung) = 510px.</div> <br> <h3>box-sizing: border-box:</h3> <div class="div2">ie Breite und Höhe gilt für alle Teile des Elements div: Die volle Breite beträgt 400px.</div> </body> </html>