• <blockquote id="9wqc5"></blockquote>
      padding<\/span>
      content<\/div><\/div><\/body><\/html><\/pre> <\/p>

      效果:<\/p>

      background-clip<\/h2>

      用來(lái)將背景圖片做適當(dāng)?shù)?strong>裁剪<\/strong>以適應(yīng)實(shí)際需要。<\/p>

      語(yǔ)法:<\/p>

      background-clip : border-box | padding-box | content-box | no-clip<\/pre>       

      參數(shù)分別表示從邊框、<\/strong>或內(nèi)填充<\/strong>,或者內(nèi)容區(qū)域<\/strong>向外裁剪背景。no-clip<\/strong>表示不裁切,和參數(shù)border-box<\/strong>顯示同樣的效果。backgroud-clip默認(rèn)值為border-box<\/strong>。<\/p>

      效果如下圖所示:<\/p>

      <\/p>

      例子:<\/p>

       背景裁切<\/title><style type=\"text\/css\">.wrap {    width:220px;     border:20px dashed #000;     padding:20px;     font-weight:bold;     color:#000;     background:#ccc url(http:\/\/static.mukewang.com\/static\/img\/logo_index.png) no-repeat;     background-origin: border-box;    background-clip:padding-box;    position: relative;}.wrap span {     position: absolute;     left:0;     top:0;}.content {    height:80px;     border:1px solid #333;}<\/style>  <\/head> <body>
      <h1><a href="http://www.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1><div   id="377j5v51b"   class=\"wrap\"><span>padding<\/span>    <div   id="377j5v51b"   class=\"content\">content<\/div><\/div><\/body><\/html><\/pre>       <\/p>       <p>效果: padding-box效果:<\/p>       <h2>background-size<\/h2>       <p class=\"sycode\">        <p class=\"sycode\">         <p>設(shè)置背景圖片的大小,以<strong>長(zhǎng)度值<\/strong>或<strong>百分比<\/strong>顯示,還可以通過(guò)<strong>cover<\/strong>和<strong>contain<\/strong>來(lái)對(duì)圖片進(jìn)行伸縮。<\/p>         <p>語(yǔ)法:<\/p>         <pre class='brush:php;toolbar:false;'>background-size: auto | <長(zhǎng)度值> | <百分比> | cover | contain<\/pre>         <p>取值說(shuō)明:<\/p>         <p><strong>1、auto<\/strong>:默認(rèn)值,不改變背景圖片的原始高度和寬度;<\/p>         <p><strong>2、<長(zhǎng)度值><\/strong>:成對(duì)出現(xiàn)如200px 50px,將背景圖片寬高依次設(shè)置為前面兩個(gè)值,當(dāng)設(shè)置一個(gè)值時(shí),將其作為圖片寬度值來(lái)<strong>等比縮放<\/strong>;<\/p>         <p><strong>3、<百分比><\/strong>:0%~100%之間的任何值,將背景圖片寬高依次設(shè)置為所在元素寬高乘以前面百分比得出的數(shù)值,當(dāng)設(shè)置一個(gè)值時(shí)同上;<\/p>         <p><strong>4、cover<\/strong>:顧名思義為<strong>覆蓋<\/strong>,即將背景圖片等比縮放以<strong>填滿(mǎn)整個(gè)容器<\/strong>;<\/p>         <p><strong>5、contain<\/strong>:容納,即將背景圖片等比縮放至<strong>某一邊緊貼容器邊緣為止<\/strong>。<\/p>         <p><strong>提示:<\/strong>大家可以在右邊的編輯窗口輸入自己的代碼嘗試不同取值的效果。<\/p>         <p> <\/p>         <h2>multiple backgrounds<\/h2>         <p class=\"sycode\">          <p class=\"sycode\">           <p>多重背景,也就是CSS2里<strong>background<\/strong>的屬性外加<strong>origin<\/strong>、<strong>clip<\/strong>和<strong>size<\/strong>組成的新background的多次疊加,縮寫(xiě)時(shí)為用<strong>逗號(hào)<\/strong>隔開(kāi)的每組值;用分解寫(xiě)法時(shí),如果有多個(gè)背景圖片,而其他屬性只有一個(gè)(例如background-repeat只有一個(gè)),表明所有背景圖片應(yīng)用該屬性值。<\/p>           <p>語(yǔ)法縮寫(xiě)如下:<\/p>           <pre class='brush:php;toolbar:false;'>background : [background-color] | [background-image] | [background-position][\/background-size] | [background-repeat] | [background-attachment] | [background-clip] | [background-origin],...<\/pre>           <p>可以把上面的縮寫(xiě)拆解成以下形式:<\/p>           <p>background-image:url1,url2,...,urlN;<\/p>           <pre class='brush:php;toolbar:false;'>background-repeat : repeat1,repeat2,...,repeatN;backround-position : position1,position2,...,positionN;background-size : size1,size2,...,sizeN;background-attachment : attachment1,attachment2,...,attachmentN;background-clip : clip1,clip2,...,clipN;background-origin : origin1,origin2,...,originN;background-color : color;<\/pre>           <p><strong>注意:<\/strong><\/p>           <ol>            <li>用逗號(hào)隔開(kāi)每組 background 的縮寫(xiě)值;<\/li>            <li>如果有 size 值,需要緊跟 position 并且用 \"\/\" 隔開(kāi);<\/li>            <li>如果有多個(gè)背景圖片,而其他屬性只有一個(gè)(例如 background-repeat 只有一個(gè)),表明所有背景圖片應(yīng)用該屬性值。<\/li>            <li>background-color 只能設(shè)置一個(gè)。<\/li>           <\/ol>           <p>舉例:<\/p>           <p>有三張單獨(dú)的圖片:<\/p>           <p><\/p>           <p><\/p>           <p><\/p>           <p>使用多背景技術(shù)實(shí)現(xiàn):<\/p>           <p><\/p>           <p>例子:<\/p>           <p class=\"sycode\">            <pre class='brush:php;toolbar:false;'><!DOCTYPE html><html><head> <meta charset=\"utf-8\"><title>多重背景<\/title><style type=\"text\/css\">.demo{    width: 300px;    height: 140px;    border: 1px solid #999;        background-image: url(http:\/\/img.mukewang.com\/54cf2365000140e600740095.jpg),                      url(http:\/\/img.mukewang.com\/54cf238a0001728d00740095.jpg),                      url(http:\/\/img.mukewang.com\/54cf23b60001fd9700740096.jpg);    background-position: left top, 100px 0, 200px 0;    background-repeat: no-repeat, no-repeat, no-repeat;        margin:0 0 20px 0;}.task {    width: 300px;    height: 140px;    border: 1px solid #999;        background:url(http:\/\/static.mukewang.com\/static\/img\/logo_index.png) left top\/75% 50% no-repeat,                url(http:\/\/static.mukewang.com\/static\/img\/logo_index.png) right bottom\/50% 45% no-repeat;               }<\/style>  <\/head> <body><div   id="377j5v51b"   class=\"demo\"><\/div><div   id="377j5v51b"   class=\"task\"><\/div><\/body><\/html><\/pre>                      <p>效果:<\/p>                                                        <p class=\"sycode\"><\/p>  <p class=\"sycode\"><\/p>  <p class=\"sycode\">   <\/p>\n<p class=\"sycode\"><\/p>   <p class=\"sycode\"><\/p>   <p class=\"sycode\">   <\/p>   <p class=\"sycode\"><\/p>   <p class=\"sycode\"><\/p>   "}	</script>
      	
      <meta http-equiv="Cache-Control" content="no-transform" />
      <meta http-equiv="Cache-Control" content="no-siteapp" />
      <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
      </head>
      
      <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
      	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
      <header>
          <div   id="377j5v51b"   class="head">
              <div   id="377j5v51b"   class="haed_left">
                  <div   id="377j5v51b"   class="haed_logo">
                      <a href="http://www.miracleart.cn/zh-tw/" title="" class="haed_logo_a">
                          <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                      </a>
                  </div>
                  <div   id="377j5v51b"   class="head_nav">
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="社群" class="head_nava head_nava-template1">社群</a>
                          <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/article.html" title="文章" class="languagechoosea on">文章</a>
                                  <a href="http://www.miracleart.cn/zh-tw/faq/zt" title="合集" class="languagechoosea">合集</a>
                                  <a href="http://www.miracleart.cn/zh-tw/wenda.html" title="問(wèn)答" class="languagechoosea">問(wèn)答</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="學(xué)習(xí)" class="head_nava head_nava-template1_1">學(xué)習(xí)</a>
                          <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/course.html" title="課程" class="languagechoosea on">課程</a>
                                  <a href="http://www.miracleart.cn/zh-tw/dic/" title="程式設(shè)計(jì)字典" class="languagechoosea">程式設(shè)計(jì)字典</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="工具庫(kù)" class="head_nava head_nava-template1_2">工具庫(kù)</a>
                          <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/development-tools" title="開(kāi)發(fā)工具" class="languagechoosea on">開(kāi)發(fā)工具</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/website-source-code" title="網(wǎng)站源碼" class="languagechoosea">網(wǎng)站源碼</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/php-libraries" title="PHP 函式庫(kù)" class="languagechoosea">PHP 函式庫(kù)</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/js-special-effects" title="JS特效" class="languagechoosea on">JS特效</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/website-materials" title="網(wǎng)站素材" class="languagechoosea on">網(wǎng)站素材</a>
                                  <a href="http://www.miracleart.cn/zh-tw/toolset/extension-plug-ins" title="擴(kuò)充插件" class="languagechoosea on">擴(kuò)充插件</a>
                              </div>
                          </div>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="http://www.miracleart.cn/zh-tw/ai" title="AI工具" class="head_nava head_nava-template1_3">AI工具</a>
                      </div>
      
                      <div   id="377j5v51b"   class="head_navs">
                          <a href="javascript:;" title="休閒" class="head_nava head_nava-template1_3">休閒</a>
                          <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                              <div   id="377j5v51b"   class="languagechoose">
                                  <a href="http://www.miracleart.cn/zh-tw/game" title="遊戲下載" class="languagechoosea on">遊戲下載</a>
                                  <a href="http://www.miracleart.cn/zh-tw/mobile-game-tutorial/" title="遊戲教程" class="languagechoosea">遊戲教程</a>
      
                              </div>
                          </div>
                      </div>
                  </div>
              </div>
                          <div   id="377j5v51b"   class="head_search">
                      <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('zh-tw')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                      <a href="javascript:;" title="搜尋"  onclick="searchs('zh-tw')"><img src="/static/imghw/find.png" alt="搜尋"></a>
                  </div>
                      <div   id="377j5v51b"   class="head_right">
                  <div   id="377j5v51b"   class="haed_language">
                      <a href="javascript:;" class="layui-btn haed_language_btn">繁體中文<i class="layui-icon layui-icon-triangle-d"></i></a>
                      <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                          <div   id="377j5v51b"   class="languagechoose">
                                                      <a href="javascript:setlang('zh-cn');" title="簡(jiǎn)體中文" class="languagechoosea">簡(jiǎn)體中文</a>
                                                      <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                      <a href="javascript:;" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                      <a href="javascript:setlang('ja');" title="日本語(yǔ)" class="languagechoosea">日本語(yǔ)</a>
                                                      <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                      <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                      <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                      <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                  </div>
                      </div>
                  </div>
                  <span id="377j5v51b"    class="head_right_line"></span>
                                  <div style="display: block;" id="login" class="haed_login ">
                          <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                      </div>
                      <div style="display: block;" id="reg" class="head_signup login">
                          <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                      </div>
                  
              </div>
          </div>
      </header>
      
      	
      	<main>
      		<div   id="377j5v51b"   class="Article_Details_main">
      			<div   id="377j5v51b"   class="Article_Details_main1">
      							<div   id="377j5v51b"   class="Article_Details_main1L">
      					<div   id="377j5v51b"   class="Article_Details_main1Lmain" id="Article_Details_main1Lmain">
      						<div   id="377j5v51b"   class="Article_Details_main1L1">目錄</div>
      						<div   id="377j5v51b"   class="Article_Details_main1L2" id="Article_Details_main1L2">
      							<!-- 左側(cè)懸浮,文章定位標(biāo)題1 id="Article_Details_main1L2s_1"-->
      															<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#background-origin" title="background-origin" >background-origin</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#background-clip" title="background-clip" >background-clip</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#background-size" title="background-size" >background-size</a>
      								</div>
      																<div   id="377j5v51b"   class="Article_Details_main1L2s ">
      									<a href="#multiple-backgrounds" title="multiple backgrounds" >multiple backgrounds</a>
      								</div>
      														</div>
      					</div>
      				</div>
      							<div   id="377j5v51b"   class="Article_Details_main1M">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
      						<a href="http://www.miracleart.cn/zh-tw/" title="首頁(yè)"
      							class="phpgenera_Details_mainL1a">首頁(yè)</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/zh-tw/web-designer.html"
      							class="phpgenera_Details_mainL1a">web前端</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      												<a href="http://www.miracleart.cn/zh-tw/div-tutorial.html"
      							class="phpgenera_Details_mainL1a">html教學(xué)</a>
      						<img src="/static/imghw/top_right.png" alt="" />
      						<span>【CSS3】-background-origin background-clip background-size_html/css_WEB-ITnose</span>
      					</div>
      					
      					<div   id="377j5v51b"   class="Articlelist_txts">
      						<div   id="377j5v51b"   class="Articlelist_txts_info">
      							<h1 class="Articlelist_txts_title">【CSS3】-background-origin background-clip background-size_html/css_WEB-ITnose</h1>
      							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
      								<div   id="377j5v51b"   class="author_info">
      									<a href="http://www.miracleart.cn/zh-tw/member/887227.html"  class="author_avatar">
      									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/887/227/63bb7851c9547215.jpg" src="/static/imghw/default1.png" alt="WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB">
      									</a>
      									<div   id="377j5v51b"   class="author_detail">
      																			<a href="http://www.miracleart.cn/zh-tw/member/887227.html" class="author_name">WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB</a>
                                      										</div>
      								</div>
                      			</div>
      							<span id="377j5v51b"    class="Articlelist_txts_time">Jun 24, 2016 am	 11:45 AM</span>
      														
      						</div>
      					</div>
      					<hr />
      					<div   id="377j5v51b"   class="article_main php-article">
      						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
      						<ins class="adsbygoogle"
      							style="display:block; text-align:center;"
      							data-ad-layout="in-article"
      							data-ad-format="fluid"
      							data-ad-client="ca-pub-5902227090019525"
      							data-ad-slot="3461856641">
      						</ins>
      						
      
      					<p class="sycode">  </p>
      <p class="sycode">   </p>
      <h2 id="background-origin">background-origin</h2>   <p class="sycode">    </p>
      <p class="sycode">     </p>
      <p>設(shè)置元素背景圖片的<strong>原始起始位置</strong>。</p>     <p>語(yǔ)法:</p>     <pre class='brush:php;toolbar:false;'>background-origin : border-box | padding-box | content-box;</pre>     <p>參數(shù)分別表示背景圖片是從<strong>邊框</strong>,還是<strong>內(nèi)邊距(默認(rèn)值)</strong>,或者是<strong>內(nèi)容區(qū)域</strong>開(kāi)始顯示。</p>     <p>效果如下:</p>     <p></p>     <p><strong>需要注意的是</strong>,如果背景不是<strong>no-repeat</strong>,這個(gè)屬性無(wú)效,它會(huì)從邊框開(kāi)始顯示。</p>     <p>例子:</p>     <p class="sycode">      <pre class='brush:php;toolbar:false;'><!DOCTYPE html><html><head> <meta charset="utf-8"><title>背景原點(diǎn)</title><style type="text/css">.wrap {    width:220px;     border:20px dashed #000;     padding:20px;     font-weight:bold;     color:#000;     background:#ccc url(http://static.mukewang.com/static/img/logo_index.png) no-repeat;     background-origin:content-box;//內(nèi)容區(qū)域顯示    position: relative;}.wrap span {     position: absolute;     left:0;     top:0;}.content {    height:80px;     border:1px solid #333;}</style>  </head> <body><div class="wrap"><span>padding</span>    <div class="content">content</div></div></body></html></pre>     </p>     <p>效果:</p>     <h2 id="background-clip">background-clip</h2>     <p class="sycode">      <p class="sycode">       <p>用來(lái)將背景圖片做適當(dāng)?shù)?strong>裁剪</strong>以適應(yīng)實(shí)際需要。</p>       <p>語(yǔ)法:</p>       <pre class='brush:php;toolbar:false;'>background-clip : border-box | padding-box | content-box | no-clip</pre>       <p>參數(shù)分別表示從<strong>邊框、</strong>或<strong>內(nèi)填充</strong>,或者<strong>內(nèi)容區(qū)域</strong>向外裁剪背景。<strong>no-clip</strong>表示不裁切,和<strong>參數(shù)border-box</strong>顯示同樣的效果。backgroud-clip默認(rèn)值為<strong>border-box</strong>。</p>       <p>效果如下圖所示:</p>       <p></p>       <p>例子:</p>       <p class="sycode">        <pre class='brush:php;toolbar:false;'><!DOCTYPE html><html><head> <meta charset="utf-8"><title>背景裁切</title><style type="text/css">.wrap {    width:220px;     border:20px dashed #000;     padding:20px;     font-weight:bold;     color:#000;     background:#ccc url(http://static.mukewang.com/static/img/logo_index.png) no-repeat;     background-origin: border-box;    background-clip:padding-box;    position: relative;}.wrap span {     position: absolute;     left:0;     top:0;}.content {    height:80px;     border:1px solid #333;}</style>  </head> <body><div class="wrap"><span>padding</span>    <div class="content">content</div></div></body></html></pre>       </p>       <p>效果: padding-box效果:</p>       <h2 id="background-size">background-size</h2>       <p class="sycode">        <p class="sycode">         <p>設(shè)置背景圖片的大小,以<strong>長(zhǎng)度值</strong>或<strong>百分比</strong>顯示,還可以通過(guò)<strong>cover</strong>和<strong>contain</strong>來(lái)對(duì)圖片進(jìn)行伸縮。</p>         <p>語(yǔ)法:</p>         <pre class='brush:php;toolbar:false;'>background-size: auto | <長(zhǎng)度值> | <百分比> | cover | contain</pre>         <p>取值說(shuō)明:</p>         <p><strong>1、auto</strong>:默認(rèn)值,不改變背景圖片的原始高度和寬度;</p>         <p><strong>2、<長(zhǎng)度值></strong>:成對(duì)出現(xiàn)如200px 50px,將背景圖片寬高依次設(shè)置為前面兩個(gè)值,當(dāng)設(shè)置一個(gè)值時(shí),將其作為圖片寬度值來(lái)<strong>等比縮放</strong>;</p>         <p><strong>3、<百分比></strong>:0%~100%之間的任何值,將背景圖片寬高依次設(shè)置為所在元素寬高乘以前面百分比得出的數(shù)值,當(dāng)設(shè)置一個(gè)值時(shí)同上;</p>         <p><strong>4、cover</strong>:顧名思義為<strong>覆蓋</strong>,即將背景圖片等比縮放以<strong>填滿(mǎn)整個(gè)容器</strong>;</p>         <p><strong>5、contain</strong>:容納,即將背景圖片等比縮放至<strong>某一邊緊貼容器邊緣為止</strong>。</p>         <p><strong>提示:</strong>大家可以在右邊的編輯窗口輸入自己的代碼嘗試不同取值的效果。</p>         <p> </p>         <h2 id="multiple-backgrounds">multiple backgrounds</h2>         <p class="sycode">          <p class="sycode">           <p>多重背景,也就是CSS2里<strong>background</strong>的屬性外加<strong>origin</strong>、<strong>clip</strong>和<strong>size</strong>組成的新background的多次疊加,縮寫(xiě)時(shí)為用<strong>逗號(hào)</strong>隔開(kāi)的每組值;用分解寫(xiě)法時(shí),如果有多個(gè)背景圖片,而其他屬性只有一個(gè)(例如background-repeat只有一個(gè)),表明所有背景圖片應(yīng)用該屬性值。</p>           <p>語(yǔ)法縮寫(xiě)如下:</p>           <pre class='brush:php;toolbar:false;'>background : [background-color] | [background-image] | [background-position][/background-size] | [background-repeat] | [background-attachment] | [background-clip] | [background-origin],...</pre>           <p>可以把上面的縮寫(xiě)拆解成以下形式:</p>           <p>background-image:url1,url2,...,urlN;</p>           <pre class='brush:php;toolbar:false;'>background-repeat : repeat1,repeat2,...,repeatN;backround-position : position1,position2,...,positionN;background-size : size1,size2,...,sizeN;background-attachment : attachment1,attachment2,...,attachmentN;background-clip : clip1,clip2,...,clipN;background-origin : origin1,origin2,...,originN;background-color : color;</pre>           <p><strong>注意:</strong></p>           <ol>            <li>用逗號(hào)隔開(kāi)每組 background 的縮寫(xiě)值;</li>            <li>如果有 size 值,需要緊跟 position 并且用 "/" 隔開(kāi);</li>            <li>如果有多個(gè)背景圖片,而其他屬性只有一個(gè)(例如 background-repeat 只有一個(gè)),表明所有背景圖片應(yīng)用該屬性值。</li>            <li>background-color 只能設(shè)置一個(gè)。</li>           </ol>           <p>舉例:</p>           <p>有三張單獨(dú)的圖片:</p>           <p></p>           <p></p>           <p></p>           <p>使用多背景技術(shù)實(shí)現(xiàn):</p>           <p></p>           <p>例子:</p>           <p class="sycode">            <pre class='brush:php;toolbar:false;'><!DOCTYPE html><html><head> <meta charset="utf-8"><title>多重背景</title><style type="text/css">.demo{    width: 300px;    height: 140px;    border: 1px solid #999;        background-image: url(http://img.mukewang.com/54cf2365000140e600740095.jpg),                      url(http://img.mukewang.com/54cf238a0001728d00740095.jpg),                      url(http://img.mukewang.com/54cf23b60001fd9700740096.jpg);    background-position: left top, 100px 0, 200px 0;    background-repeat: no-repeat, no-repeat, no-repeat;        margin:0 0 20px 0;}.task {    width: 300px;    height: 140px;    border: 1px solid #999;        background:url(http://static.mukewang.com/static/img/logo_index.png) left top/75% 50% no-repeat,                url(http://static.mukewang.com/static/img/logo_index.png) right bottom/50% 45% no-repeat;               }</style>  </head> <body><div class="demo"></div><div class="task"></div></body></html></pre>                      <p>效果:</p>                                                        <p class="sycode"></p>  <p class="sycode"></p>  <p class="sycode">   </p>
      <p class="sycode"></p>   <p class="sycode"></p>   <p class="sycode">   </p>   <p class="sycode"></p>   <p class="sycode"></p>   
      
      
      						</div>
      					</div>
      					<div   id="377j5v51b"   class="wzconShengming_sp">
      						<div   id="377j5v51b"   class="bzsmdiv_sp">本網(wǎng)站聲明</div>
      						<div>本文內(nèi)容由網(wǎng)友自願(yuàn)投稿,版權(quán)歸原作者所有。本站不承擔(dān)相應(yīng)的法律責(zé)任。如發(fā)現(xiàn)涉嫌抄襲或侵權(quán)的內(nèi)容,請(qǐng)聯(lián)絡(luò)admin@php.cn</div>
      					</div>
      				</div>
      
      				<ins class="adsbygoogle"
           style="display:block"
           data-ad-format="autorelaxed"
           data-ad-client="ca-pub-5902227090019525"
           data-ad-slot="2507867629"></ins>
      
      
      
      				<div   id="377j5v51b"   class="AI_ToolDetails_main4sR">
      
      
      				<ins class="adsbygoogle"
              style="display:block"
              data-ad-client="ca-pub-5902227090019525"
              data-ad-slot="3653428331"
              data-ad-format="auto"
              data-full-width-responsive="true"></ins>
          
      
      
      					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門(mén)文章</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821119.html" title="指南:恆星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恆星刀片保存文件位置/保存文件丟失/不保存</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 週前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821436.html" title="沙丘:覺(jué)醒 - 高級(jí)行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺(jué)醒 - 高級(jí)行星學(xué)家Quest演練</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821278.html" title="約會(huì)一切:德克和哈珀關(guān)係指南" class="phpgenera_Details_mainR4_bottom_title">約會(huì)一切:德克和哈珀關(guān)係指南</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div> -->
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>熱AI工具</h2>
      								</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
      													<h3>Undress AI Tool</h3>
      												</a>
      												<p>免費(fèi)脫衣圖片</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
      													<h3>Undresser.AI Undress</h3>
      												</a>
      												<p>人工智慧驅(qū)動(dòng)的應(yīng)用程序,用於創(chuàng)建逼真的裸體照片</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
      													<h3>AI Clothes Remover</h3>
      												</a>
      												<p>用於從照片中去除衣服的線(xiàn)上人工智慧工具。</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
      													<h3>Clothoff.io</h3>
      												</a>
      												<p>AI脫衣器</p>
      											</div>
      										</div>
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
      													<h3>Video Face Swap</h3>
      												</a>
      												<p>使用我們完全免費(fèi)的人工智慧換臉工具,輕鬆在任何影片中換臉!</p>
      											</div>
      										</div>
      																</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/zh-tw/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      					
      
      
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門(mén)文章</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821119.html" title="指南:恆星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恆星刀片保存文件位置/保存文件丟失/不保存</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 週前</span>
      										<span>By DDD</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>2 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>1 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821436.html" title="沙丘:覺(jué)醒 - 高級(jí)行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺(jué)醒 - 高級(jí)行星學(xué)家Quest演練</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>3 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/1796821278.html" title="約會(huì)一切:德克和哈珀關(guān)係指南" class="phpgenera_Details_mainR4_bottom_title">約會(huì)一切:德克和哈珀關(guān)係指南</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<span>4 週前</span>
      										<span>By Jack chen</span>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/article.html">顯示更多</a>
      							</div>
      						</div>
      					</div>
      
      
      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/hottools2.png" alt="" />
      									<h2>熱工具</h2>
      								</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="記事本++7.3.1" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_title">
      													<h3>記事本++7.3.1</h3>
      												</a>
      												<p>好用且免費(fèi)的程式碼編輯器</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3漢化版" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3漢化版</h3>
      												</a>
      												<p>中文版,非常好用</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="禪工作室 13.0.1" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_title">
      													<h3>禪工作室 13.0.1</h3>
      												</a>
      												<p>強(qiáng)大的PHP整合開(kāi)發(fā)環(huán)境</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
      													<h3>Dreamweaver CS6</h3>
      												</a>
      												<p>視覺(jué)化網(wǎng)頁(yè)開(kāi)發(fā)工具</p>
      											</div>
      										</div>
      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
      											<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_top_img">
      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac版" />
      											</a>
      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
      												<a href="http://www.miracleart.cn/zh-tw/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_title">
      													<h3>SublimeText3 Mac版</h3>
      												</a>
      												<p>神級(jí)程式碼編輯軟體(SublimeText3)</p>
      											</div>
      										</div>
      																	</div>
      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      									<a href="http://www.miracleart.cn/zh-tw/ai">顯示更多</a>
      								</div>
      							</div>
      						</div>
      										
      
      					
      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      									src="/static/imghw/hotarticle2.png" alt="" />
      								<h2>熱門(mén)話(huà)題</h2>
      							</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/gmailyxdlrkzn" title="gmail信箱登陸入口在哪裡" class="phpgenera_Details_mainR4_bottom_title">gmail信箱登陸入口在哪裡</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>8637</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>17</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/java-tutorial" title="Java教學(xué)" class="phpgenera_Details_mainR4_bottom_title">Java教學(xué)</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1783</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>16</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/cakephp-tutor" title="CakePHP 教程" class="phpgenera_Details_mainR4_bottom_title">CakePHP 教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1727</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>56</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/laravel-tutori" title="Laravel 教程" class="phpgenera_Details_mainR4_bottom_title">Laravel 教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1577</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>28</span>
      										</div>
      									</div>
      								</div>
      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
      									<a href="http://www.miracleart.cn/zh-tw/faq/php-tutorial" title="PHP教程" class="phpgenera_Details_mainR4_bottom_title">PHP教程</a>
      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/eyess.png" alt="" />
      											<span>1442</span>
      										</div>
      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
      											<img src="/static/imghw/tiezi.png" alt="" />
      											<span>31</span>
      										</div>
      									</div>
      								</div>
      														</div>
      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
      								<a href="http://www.miracleart.cn/zh-tw/faq/zt">顯示更多</a>
      							</div>
      						</div>
      					</div>
      				</div>
      			</div>
      							<div   id="377j5v51b"   class="Article_Details_main2">
      					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
      						<div   id="377j5v51b"   class="phpmain1_2_top">
      							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
      									src="/static/imghw/index2_title2.png" alt="" /></a>
      						</div>
      						<div   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
      
      													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822239.html" title="我如何了解最新的HTML標(biāo)準(zhǔn)和最佳實(shí)踐?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175037959235285.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="我如何了解最新的HTML標(biāo)準(zhǔn)和最佳實(shí)踐?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822239.html" title="我如何了解最新的HTML標(biāo)準(zhǔn)和最佳實(shí)踐?" class="phphistorical_Version2_mids_title">我如何了解最新的HTML標(biāo)準(zhǔn)和最佳實(shí)踐?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 08:33 AM</span>
      								<p class="Articlelist_txts_p">要跟上HTML標(biāo)準(zhǔn)和最佳實(shí)踐,關(guān)鍵在於有意為之而非盲目追隨。首先,關(guān)注官方來(lái)源如WHATWG和W3C的摘要或更新日誌,了解新標(biāo)籤(如)和屬性,將其作為參考解決疑難問(wèn)題;其次,訂閱可信的網(wǎng)頁(yè)開(kāi)發(fā)新聞通訊和博客,每週花10-15分鐘瀏覽更新,關(guān)注實(shí)際用例而非僅收藏文章;再次,使用開(kāi)發(fā)者工具和linters如HTMLHint,通過(guò)即時(shí)反饋優(yōu)化代碼結(jié)構(gòu);最後,與開(kāi)發(fā)者社區(qū)互動(dòng),分享經(jīng)驗(yàn)並學(xué)習(xí)他人實(shí)戰(zhàn)技巧,從而持續(xù)提升HTML技能。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821966.html" title="如何使用元素來(lái)表示文檔的主要內(nèi)容?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175034575284018.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何使用元素來(lái)表示文檔的主要內(nèi)容?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821966.html" title="如何使用元素來(lái)表示文檔的主要內(nèi)容?" class="phphistorical_Version2_mids_title">如何使用元素來(lái)表示文檔的主要內(nèi)容?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 pm	 11:09 PM</span>
      								<p class="Articlelist_txts_p">使用標(biāo)籤的原因是提升網(wǎng)頁(yè)的語(yǔ)義化結(jié)構(gòu)和可訪問(wèn)性,使屏幕閱讀器和搜索引擎更易理解頁(yè)面內(nèi)容,並允許用戶(hù)快速跳轉(zhuǎn)至核心內(nèi)容。以下是關(guān)鍵要點(diǎn):1.每個(gè)頁(yè)面應(yīng)僅包含一個(gè)元素;2.不應(yīng)包括跨頁(yè)面重複的內(nèi)容(如側(cè)邊欄或頁(yè)腳);3.可與ARIA屬性結(jié)合使用以增強(qiáng)無(wú)障礙體驗(yàn)。通常位於和之後、之前,用於包裹唯一的頁(yè)面內(nèi)容,例如文章、表單或產(chǎn)品詳情,並應(yīng)避免嵌套在、或中;為提高輔助功能,可使用aria-labelledby或aria-label明確標(biāo)識(shí)部分。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821965.html" title="如何創(chuàng)建基本的HTML文檔?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175034527243743.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何創(chuàng)建基本的HTML文檔?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821965.html" title="如何創(chuàng)建基本的HTML文檔?" class="phphistorical_Version2_mids_title">如何創(chuàng)建基本的HTML文檔?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 pm	 11:01 PM</span>
      								<p class="Articlelist_txts_p">要?jiǎng)?chuàng)建一個(gè)基本的HTML文檔,首先需要了解其基本結(jié)構(gòu)並按照標(biāo)準(zhǔn)格式編寫(xiě)代碼。 1.開(kāi)始時(shí)使用聲明文檔類(lèi)型;2.使用標(biāo)籤包裹整個(gè)內(nèi)容;3.在其中包含和兩個(gè)主要部分,用於存放元數(shù)據(jù)如標(biāo)題、樣式錶鍊接等,而則包含用戶(hù)可見(jiàn)的內(nèi)容如標(biāo)題、段落、圖片和鏈接;4.保存文件為.html格式並在瀏覽器中打開(kāi)查看效果;5.隨後可逐步添加更多元素以豐富頁(yè)面內(nèi)容。遵循這些步驟即可快速構(gòu)建一個(gè)基礎(chǔ)網(wǎng)頁(yè)。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821968.html" title="如何使用" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175034767289886.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何使用" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796821968.html" title="如何使用" class="phphistorical_Version2_mids_title">如何使用</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 pm	 11:41 PM</span>
      								<p class="Articlelist_txts_p">要?jiǎng)?chuàng)建HTML複選框,需使用type屬性設(shè)為checkbox的元素。 1.基本結(jié)構(gòu)包含id、name和label標(biāo)籤,確保點(diǎn)擊文字可切換選項(xiàng);2.多個(gè)相關(guān)複選框應(yīng)使用相同name但不同value,並用fieldset包裹提升可訪問(wèn)性;3.自定義樣式時(shí)隱藏原生控件並用CSS設(shè)計(jì)替代元素,同時(shí)保持功能完整;4.確保可用性,配對(duì)label、支持鍵盤(pán)導(dǎo)航且避免僅依賴(lài)視覺(jué)提示。以上步驟能幫助開(kāi)發(fā)者正確實(shí)現(xiàn)兼具功能與美觀的複選框組件。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823670.html" title="如何最小化HTML文件的大小?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175069761263762.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何最小化HTML文件的大小?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823670.html" title="如何最小化HTML文件的大小?" class="phphistorical_Version2_mids_title">如何最小化HTML文件的大?。?/a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 24, 2025 am	 12:53 AM</span>
      								<p class="Articlelist_txts_p">要減小HTML文件大小需清理冗余代碼、壓縮內(nèi)容并優(yōu)化結(jié)構(gòu)。1.刪除未使用的標(biāo)簽、注釋和多余空白以減少體積;2.將內(nèi)聯(lián)CSS和JavaScript移至外部文件并合并多個(gè)腳本或樣式塊;3.在不影響解析的前提下簡(jiǎn)化標(biāo)簽語(yǔ)法,如省略可選閉合標(biāo)簽或使用簡(jiǎn)短屬性;4.清理后啟用Gzip或Brotli等服務(wù)器端壓縮技術(shù)進(jìn)一步縮減傳輸體積。這些步驟可在不犧牲功能的前提下顯著提升頁(yè)面加載性能。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823674.html" title="隨著時(shí)間的流逝,HTML如何發(fā)展,其歷史上的關(guān)鍵里程碑是什麼?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175069767173496.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="隨著時(shí)間的流逝,HTML如何發(fā)展,其歷史上的關(guān)鍵里程碑是什麼?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796823674.html" title="隨著時(shí)間的流逝,HTML如何發(fā)展,其歷史上的關(guān)鍵里程碑是什麼?" class="phphistorical_Version2_mids_title">隨著時(shí)間的流逝,HTML如何發(fā)展,其歷史上的關(guān)鍵里程碑是什麼?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 24, 2025 am	 12:54 AM</span>
      								<p class="Articlelist_txts_p">htmlhasevolvedscreatscreationtomeetthegrowingdemandsofwebdevelopersandusers.inatelyallyasimplemarkuplanguageforsharingdocuments,ithasundergonemajorupdates,包括html.2.0,包括wheintrodistusefforms;</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796824133.html" title="如何使用元素代表文檔或部分的頁(yè)腳?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175078424215034.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何使用元素代表文檔或部分的頁(yè)腳?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796824133.html" title="如何使用元素代表文檔或部分的頁(yè)腳?" class="phphistorical_Version2_mids_title">如何使用元素代表文檔或部分的頁(yè)腳?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 25, 2025 am	 12:57 AM</span>
      								<p class="Articlelist_txts_p">是HTML5中用於定義頁(yè)面或內(nèi)容區(qū)塊底部的語(yǔ)義化標(biāo)籤,通常包含版權(quán)信息、聯(lián)繫方式或?qū)Ш芥溄拥龋凰芍渺俄?yè)面底部或嵌套在、等標(biāo)籤內(nèi)作為區(qū)塊尾部;使用時(shí)應(yīng)注意避免重複濫用及放入無(wú)關(guān)內(nèi)容。</p>
      							</div>
      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822313.html" title="如何使用元素將視頻嵌入HTML中?" class="phphistorical_Version2_mids_img">
      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175038535348364.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何使用元素將視頻嵌入HTML中?" />
      								</a>
      								<a href="http://www.miracleart.cn/zh-tw/faq/1796822313.html" title="如何使用元素將視頻嵌入HTML中?" class="phphistorical_Version2_mids_title">如何使用元素將視頻嵌入HTML中?</a>
      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 10:09 AM</span>
      								<p class="Articlelist_txts_p">要在HTML中嵌入視頻,需使用標(biāo)籤並指定視頻源與屬性。 1.使用src屬性或元素定義視頻路徑和格式;2.添加controls、width、height等基本屬性;3.為兼容不同瀏覽器,可列舉MP4、WebM、Ogg等多種格式;4.使用controls、autoplay、muted、loop、preload等屬性控製播放行為;5.通過(guò)CSS實(shí)現(xiàn)響應(yīng)式佈局,確保適配不同屏幕。正確結(jié)構(gòu)與屬性組合能確保視頻良好顯示與功能支持。</p>
      							</div>
      													</div>
      
      													<a href="http://www.miracleart.cn/zh-tw/web-designer.html" class="phpgenera_Details_mainL4_botton">
      								<span>See all articles</span>
      								<img src="/static/imghw/down_right.png" alt="" />
      							</a>
      											</div>
      				</div>
      					</div>
      	</main>
      	<footer>
          <div   id="377j5v51b"   class="footer">
              <div   id="377j5v51b"   class="footertop">
                  <img src="/static/imghw/logo.png" alt="">
                  <p>公益線(xiàn)上PHP培訓(xùn),幫助PHP學(xué)習(xí)者快速成長(zhǎng)!</p>
              </div>
              <div   id="377j5v51b"   class="footermid">
                  <a href="http://www.miracleart.cn/zh-tw/about/us.html">關(guān)於我們</a>
                  <a href="http://www.miracleart.cn/zh-tw/about/disclaimer.html">免責(zé)聲明</a>
                  <a href="http://www.miracleart.cn/zh-tw/update/article_0_1.html">Sitemap</a>
              </div>
              <div   id="377j5v51b"   class="footerbottom">
                  <p>
                      ? php.cn All rights reserved
                  </p>
              </div>
          </div>
      </footer>
      
      <input type="hidden" id="verifycode" value="/captcha.html">
      
      
      
      
      		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
      	
      	
      	
      	
      	
      
      	
      	
      
      
      
      
      
      
      <footer>
      <div class="friendship-link">
      <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
      <a href="http://www.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
      
      <div class="friend-links">
      
      
      </div>
      </div>
      
      </footer>
      
      
      <script>
      (function(){
          var bp = document.createElement('script');
          var curProtocol = window.location.protocol.split(':')[0];
          if (curProtocol === 'https') {
              bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
          }
          else {
              bp.src = 'http://push.zhanzhang.baidu.com/push.js';
          }
          var s = document.getElementsByTagName("script")[0];
          s.parentNode.insertBefore(bp, s);
      })();
      </script>
      </body><div id="teszk" class="pl_css_ganrao" style="display: none;"><label id="teszk"></label><p id="teszk"><sup id="teszk"></sup></p><rt id="teszk"><code id="teszk"><form id="teszk"><em id="teszk"></em></form></code></rt><acronym id="teszk"></acronym><dl id="teszk"></dl><thead id="teszk"></thead><xmp id="teszk"></xmp><big id="teszk"><ins id="teszk"><blockquote id="teszk"></blockquote></ins></big><strong id="teszk"><i id="teszk"><font id="teszk"></font></i></strong><meter id="teszk"><option id="teszk"></option></meter><optgroup id="teszk"></optgroup><tfoot id="teszk"></tfoot><strong id="teszk"></strong><optgroup id="teszk"></optgroup><dl id="teszk"></dl><dl id="teszk"><address id="teszk"></address></dl><dd id="teszk"><xmp id="teszk"><track id="teszk"><input id="teszk"></input></track></xmp></dd><delect id="teszk"></delect><form id="teszk"></form><acronym id="teszk"></acronym><li id="teszk"></li><s id="teszk"><menuitem id="teszk"></menuitem></s><small id="teszk"></small><form id="teszk"></form><sup id="teszk"><option id="teszk"><optgroup id="teszk"></optgroup></option></sup><sup id="teszk"><mark id="teszk"></mark></sup><strong id="teszk"><strike id="teszk"><tfoot id="teszk"></tfoot></strike></strong><nobr id="teszk"><code id="teszk"><xmp id="teszk"></xmp></code></nobr><pre id="teszk"></pre><nobr id="teszk"></nobr><tbody id="teszk"></tbody><li id="teszk"></li><tfoot id="teszk"><tbody id="teszk"><abbr id="teszk"></abbr></tbody></tfoot><div id="teszk"></div><dfn id="teszk"></dfn><tt id="teszk"></tt><bdo id="teszk"></bdo><strong id="teszk"><cite id="teszk"></cite></strong><fieldset id="teszk"><dl id="teszk"><font id="teszk"><li id="teszk"></li></font></dl></fieldset><tfoot id="teszk"></tfoot><sup id="teszk"><span id="teszk"><form id="teszk"><track id="teszk"></track></form></span></sup><pre id="teszk"><thead id="teszk"></thead></pre><big id="teszk"></big><thead id="teszk"></thead><tr id="teszk"><div id="teszk"><u id="teszk"></u></div></tr><object id="teszk"></object><table id="teszk"></table><cite id="teszk"><form id="teszk"></form></cite><center id="teszk"></center><button id="teszk"></button><noframes id="teszk"><abbr id="teszk"></abbr></noframes><menu id="teszk"><source id="teszk"><progress id="teszk"></progress></source></menu><address id="teszk"></address><strike id="teszk"></strike><object id="teszk"><s id="teszk"></s></object><optgroup id="teszk"></optgroup><label id="teszk"><th id="teszk"></th></label><em id="teszk"></em><tt id="teszk"></tt><code id="teszk"></code><dl id="teszk"><th id="teszk"><ul id="teszk"></ul></th></dl><rp id="teszk"></rp><address id="teszk"><kbd id="teszk"><tbody id="teszk"><small id="teszk"></small></tbody></kbd></address><center id="teszk"></center><bdo id="teszk"></bdo><dfn id="teszk"><pre id="teszk"><pre id="teszk"></pre></pre></dfn><video id="teszk"></video><form id="teszk"></form><table id="teszk"><p id="teszk"><strike id="teszk"><center id="teszk"></center></strike></p></table><div id="teszk"><mark id="teszk"></mark></div><pre id="teszk"><tfoot id="teszk"><thead id="teszk"></thead></tfoot></pre><dfn id="teszk"></dfn><meter id="teszk"></meter><tr id="teszk"><center id="teszk"><optgroup id="teszk"><noframes id="teszk"></noframes></optgroup></center></tr><bdo id="teszk"></bdo><track id="teszk"><s id="teszk"><thead id="teszk"></thead></s></track><p id="teszk"><strike id="teszk"><center id="teszk"></center></strike></p><ol id="teszk"><form id="teszk"></form></ol><pre id="teszk"><button id="teszk"><style id="teszk"><tbody id="teszk"></tbody></style></button></pre><tbody id="teszk"><small id="teszk"><bdo id="teszk"><dd id="teszk"></dd></bdo></small></tbody><source id="teszk"></source><wbr id="teszk"><output id="teszk"></output></wbr><tr id="teszk"><pre id="teszk"><button id="teszk"></button></pre></tr><optgroup id="teszk"><legend id="teszk"><dfn id="teszk"></dfn></legend></optgroup><label id="teszk"></label><th id="teszk"></th><option id="teszk"></option><sup id="teszk"></sup><ul id="teszk"></ul><xmp id="teszk"><blockquote id="teszk"><video id="teszk"><object id="teszk"></object></video></blockquote></xmp><delect id="teszk"><font id="teszk"></font></delect><tfoot id="teszk"><tbody id="teszk"><sup id="teszk"><form id="teszk"></form></sup></tbody></tfoot><xmp id="teszk"><blockquote id="teszk"><video id="teszk"><object id="teszk"></object></video></blockquote></xmp><video id="teszk"></video><meter id="teszk"></meter><thead id="teszk"></thead><legend id="teszk"><menuitem id="teszk"></menuitem></legend><option id="teszk"></option><optgroup id="teszk"></optgroup><th id="teszk"><thead id="teszk"></thead></th><small id="teszk"></small><dl id="teszk"><th id="teszk"><ul id="teszk"></ul></th></dl><optgroup id="teszk"><nav id="teszk"><thead id="teszk"><acronym id="teszk"></acronym></thead></nav></optgroup><mark id="teszk"></mark><dl id="teszk"></dl><optgroup id="teszk"><nav id="teszk"><rt id="teszk"></rt></nav></optgroup><thead id="teszk"></thead><dl id="teszk"></dl><p id="teszk"></p><div id="teszk"></div><th id="teszk"></th><b id="teszk"><acronym id="teszk"><strong id="teszk"></strong></acronym></b><option id="teszk"></option><noframes id="teszk"></noframes><mark id="teszk"><noframes id="teszk"><abbr id="teszk"><strike id="teszk"></strike></abbr></noframes></mark><strike id="teszk"></strike><xmp id="teszk"><address id="teszk"></address></xmp><abbr id="teszk"></abbr><center id="teszk"><dd id="teszk"></dd></center><i id="teszk"></i><tbody id="teszk"><tr id="teszk"></tr></tbody><sup id="teszk"><option id="teszk"></option></sup><thead id="teszk"></thead><rt id="teszk"></rt><fieldset id="teszk"></fieldset><output id="teszk"></output><strong id="teszk"><label id="teszk"><center id="teszk"><rp id="teszk"></rp></center></label></strong><small id="teszk"><fieldset id="teszk"><acronym id="teszk"></acronym></fieldset></small><noframes id="teszk"></noframes><button id="teszk"></button><big id="teszk"><option id="teszk"><pre id="teszk"></pre></option></big><output id="teszk"></output><object id="teszk"></object><strong id="teszk"><acronym id="teszk"><pre id="teszk"></pre></acronym></strong><nobr id="teszk"></nobr><code id="teszk"><th id="teszk"><address id="teszk"></address></th></code><center id="teszk"></center><ruby id="teszk"><menu id="teszk"></menu></ruby><delect id="teszk"></delect><thead id="teszk"></thead><mark id="teszk"><table id="teszk"></table></mark><input id="teszk"></input><ins id="teszk"><abbr id="teszk"></abbr></ins><tbody id="teszk"><optgroup id="teszk"><fieldset id="teszk"></fieldset></optgroup></tbody><menuitem id="teszk"></menuitem><legend id="teszk"><center id="teszk"><acronym id="teszk"><noframes id="teszk"></noframes></acronym></center></legend><label id="teszk"><th id="teszk"><strike id="teszk"><tt id="teszk"></tt></strike></th></label><strike id="teszk"><strike id="teszk"><center id="teszk"></center></strike></strike><tr id="teszk"></tr></div>
      
      </html>