???? ??? ??? ??? ??
CSS3? border-image ?? ???? ?? ??? ??:
CSS3 ???? ??? ???? ???? ?? ?? ??????. ???? ??? ???? ?? ? ???? ?????? ??? ??? ?? ???? ????. ??? ??? ??? ??? ???? ??? ??? ???? ?? ????? ? ????. >1. ?? ??:
border- ??? ??? ??? ??? ???? ??? ? ????. border-style ??? ???? ??? ??? ?????. border-image? ??? ???? ??? ? ????.
border-image? ??? ???? ??? ??? border-style? ??? ??? ??? ????, ??? ??? border-image? ??? ??? ??? ??? ?????.
? ??? ?? ??? ???? ? ? ????.
border-image-source border-image-slice border-image-width border-image-outset border-image-repeat
?? ??:
border-image: source slice / width / outset repeat
?? ?? ??? ????, ? ??? ??? ??? ???????. 2. ???? ??:
1. border-image-source:
? ??? ??? ??? ?? ??? ?? ??? ???? ?? ???? ???? ??? ???? ? ?????. ?? ??:
border-image-source : none | <url>
? ??? ???? ?????. ?? ???? ???? ? ???? ???? ??? ?????. ???? ???? ???? ???? ?? background-image? ???? url()? ???? ???? ??? ?? ?? ?? ??? ?????.
2.border-image-slice:
? ??? ???? ??? ??? ???? ? ?????. ?? ??:
border-image-slice: [ <number> | <percentage>]{1,4}&& fill?
? ??? ???? 100%???. ?? ??? ?? ??? ?? ??? ??? ?? ? ??? ????? ??(px)? ?????.
??? ??? ?? ??? ??? ?????.
??? ??? ?? 1~4?? ?? ?? ? ????. ? ??? border-width? ???? ??, ???, ???, ?? ??? ????.
border-image-slice ??? ? ??? ??? ??????. ????? ??? ??? ??? ?? ??? ??? ????.
?? ??? ?????? ?? ???? ????? ???. ???? ? ?? ????? ??? 27???? ? ??? ??? ??? (27*3)?????. ????(slice)? ??? ??? ??? ????. ???? ??? ??? ?? ??? ?? ?????.
border-image-slice:27px 27px 27px 27px
? ?? 27px? ??? ?? ?????? ???? 27px?? ????. ? ?? 27px? ??? ??? ?????? ???? 27px?? ????.
? ?? 27px? ??? ?? ?????? ???? 27px?? ????.
? ?? 27px? ???? ?? ?????? ???? 27px?? ????.
?? ?? ??? ??? ????.
???? ?? ?? ??? ?? ????, ?? ?? ?? ??? ??? ????.
CSS ??? ??? ????. ??? ????:
div{ margin:0px auto; height:100px; width:100px; border-style:solid; border-width:20px; border-color:blue red; }
? ??? ???? ?? div ??? ??? ? ????. ??? ? ???? ??? ?? 9?? ??? ??? ????.
?? ?? ???? 9? ??? ????. ??? ??? 9? ??? ??? ??? ????. ?, ??? ???? ?? ??? ??? ?? ??? ?????.
fill ???? ?? ?? ??? ???? ?? ??? ?????(???? ?? ??? ??? ???? ?? ????).
3.border-image-width:
? ??? ??? ???? ??? ???? ? ?????.
?? ??:
border-image-width : [ <length> | <percentage> | <number> | auto ]{1,4}
??? ???? ??? ??? ?????. ? ??? ??? ??? ????? ?? ? ??? "??"? ???? ? ?????. .
? ??? ??? ? ????. ??? ??? ??? ??? ???? ?????.
? ??? 1~4? ?? ?? ? ????. ? ??? border-width? ???? ??, ???, ???, ?? ??? ????.
4.border-image-outset:
? ??? ?? ??? ??? ??? ??? ?? ??? ???? ? ?????.
?? ??:
border-image-outset : [ <length> | <number> ]{1,4}
? ??? 1~4? ?? ?? ? ????. ? ??? border-width? ???? ??, ???, ???, ?? ??? ????. .
5.border-image-repeat:
?? ??? ???? ?? ??(?? ?????? ??? ??)? ?? ??? ??? ????? ???? ?????. ??.
?? ??:
border-image-repeat: [ stretch | repeat | round ]{1,2}
?? ? ?? ??? ??? ?????.
stretch: ???? ??? ??? ????.
??: ???? ????? ????? ??? ????.
???: ???? ????? ????? ??? ????. ??? ??? ??? ???? ?? ?? ???? ??? ??? ?? ???? ??? ?????.
? ??? 1~2?? ???? ?? ? ????.
1?? ?? ?? ???? 4??? ?????.
? ?? ?? ?? ? ??? ?? ????? ? ??? ?? ? ??? ??????.
? ??? ???? ????? ????? ?????.
3. ?? ??:
?? ?? ??: ?? ?? ????? ?? ???? ??? ???? ???? ??? (27*3)px???.
?? 1:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://ask.php.cn/" /> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:200px; border:27px solid red; border-image:url("mytest/demo/bimg.jpg") 27; } </style> </head> <body> <div id="thediv"></div> </body> </html>
? ???? border-image-slice? ??? ?? ?????. 27, border-image-width? ???? ????? ???? ??? ???? ????, border-image-repeat ??? ???? ????? ????? Stretch ??? Stretch? ?????. ?? ?? ??(?, ? ?? ??? ??? ??)???.
? 2:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://ask.php.cn/" /> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:200px; border:54px solid red; border-image:url("mytest/demo/bimg.jpg") 27; } </style> </head> <body> <div id="thediv"></div> </body> </html>
? ?? ? 1? ??? ???? ??? ??? ?? ??? ???? ????? ????.
?? 3:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://http://ask.php.cn/"/> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:200px; border:27px solid red; border-image:url("mytest/demo/bimg.jpg") 27 stretch repeat; } </style> </head> <body> <div id="thediv"></div> </body> </html>
? ???? Stretch? ?? ????, Repeat? ?? ???? ??????. ?? ??? ?? ??? ??? ?? ?? ?? ? ??? ??? ?? ??(?? ??? ??? ??)? ??? ???? ???? ????? ?????.
? 4:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://http://ask.php.cn/" /> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:100px; border:27px solid red; border-image:url("mytest/demo/bimg.jpg") 27 repeat round; } </style> </head> <body> <div id="thediv"></div> </body> </html>
??? ??? ??? ?? ?? ??? ??? ? ???? ??? ??? ? ????(??? ??). ?? ?? ??) ??? ???? ????? ????? ????.
?? 5:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://http://ask.php.cn/" /> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:100px; border-style:solid; border-color:red; border-width:27px 54px; border-image:url("mytest/demo/bimg.jpg") 27; } </style> </head> <body> <div id="thediv"></div> </body> </html>
? ??? ???? ??? ?????. ??? ??.
? 6:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://http://ask.php.cn/" /> <title>PHP中文網(wǎng)</title> <style type="text/css"> div{ height:100px; width:100px; border-style:solid; border-color:red; border-width:27px 54px; border-image:url("bimg.jpg") 27/27px; } </style> </head> <body> <div id="thediv"></div> </body> </html>
border-image-width ??? ???? ??? ???? ? ?? ??? ??? ?? ???? ????.