| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| <title>Transform Center with Borders</title> |
| <style type="text/css" media="screen"> |
| outline: 5px solid black; |
| border-right: 50px solid gray; |
| -webkit-transform: scalex(2); |
| -webkit-transform-origin: left; |
| <p>Top box should have gray part extending outside the black outline. Lower box should lie inside the outline</p> |
| <div class="box">box-sizing: auto</div> |
| <div class="box border-box">box-sizing: border-box</div> |