& vi. Boxing

3?? ??: ?? ???: ?? ?? ??: boxing ?? ??: boxed

sizing

英['sa?zɑ?]

n ??; ??? ?? ??? ??;

CSS3 ?? ?? ?? ?? ???

??: ?? ??? ??? ?? ???? ???? ??? ? ????.

??: Internet Explorer, Chrome, Safari ? Opera? ?? ?? ??? ?????. Firefox?? ??? -moz-? ?????.

css3? box-sizing ??? ???? ?? ??? ???? ?? ??? ?? ???? ??? ? ????. ???? ? ?? ?? ????. content-box? ?? ??? ??, ??? ? ??? ??? ?????. -box? ?? ??? ?????. ??? ?? ?? ????



CSS3 ?? ?? ?? ?? ?

<!DOCTYPE html>
<html>
<head>
<style> 
div.container
{
width:30em;
border:1em solid;
}
div.box
{
box-sizing:border-box;
-moz-box-sizing:border-box; /* Firefox */
-webkit-box-sizing:border-box; /* Safari */
width:50%;
border:1em solid red;
float:left;
}
</style>
</head>
<body>

<div class="container">
<div class="box">這個 div 占據(jù)左半部分。</div>
<div class="box">這個 div 占據(jù)右半部分。</div>
</div>

</body>
</html>

???? ?? ?

??? ????? ??? "???? ??" ??? ?????