blob: dc4535474bd6b6ad08e39697c85c3901b22abc33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>CSS UI: box-sizing:padding-box for a block box</title>
<link href="http://www.w3.org/TR/css3-ui/#box-sizing" rel="help" />
<link href="reference/box-sizing-padding-box-block-001-ref.xht" rel="match" />
<style>
#test { box-sizing:padding-box; padding:50px; width:150px; height:50px; background:black }
</style>
</head><body><p>There should be a black square below.</p>
<div id="test"></div></body></html>
|