& vi. Boxing

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

align

English [??la?n] US [??la?n]

vt. an Alliance ; ???? ??

vi. ??? ??

3?? ??: align ?? ??: align ?? ??: alignment

CSS ?? ?? ?? ???

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

??: ??box-align: start|end|center|baseline|stretch;

??: start ???? ??? ??? ?? ? ?? ??? ?? ????? ??? ?? ????? ?? ?????. . ??? ??? ?? ? ?? ??? ??? ????? ??? ??? ????? ?? ?????. end ???? ??? ??? ?? ? ?? ??? ??? ????? ??? ??? ????? ?? ?????. ??? ??? ?? ? ?? ??? ?? ????? ??? ?? ????? ?? ?????. center? ?? ??? ???? ??? ?? ?? ?? ??, ?? ?? ??? ??? ???. ??? box-orient? ??? ? ?? ??? ?? ?? ?? ??? ???? ?? ?????. Stretch ?? ??? ?? ?? ?? ???

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

CSS ?? ?? ?? ?

<!DOCTYPE html>
<html>
<head>
<style> 
div
{
width:350px;
height:100px;
border:1px solid black;
  
/* Firefox */
display:-moz-box;
-moz-box-pack:center;
-moz-box-align:center;

/* Safari, Chrome, and Opera */
display:-webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;

/* W3C */
display:box;
box-pack:center;
box-align:center;
}
</style>
</head>
<body>

<div>
<p>我是居中對(duì)齊的。</p>
</div>

<p><b>注釋:</b>IE 不支持 box-pack 和 box-align 屬性。</p>

</body>
</html>

???? ?? ?

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