|
第四页 学习分层技术 你可以注意到上面的那个布局用表格就能很轻易地做到。但 你肯定注意到你无法用表格将几幅图片或文字叠放在一起。 而利用动态HTML,则可以利用分层顺序将叠放显示各个对 Here is Aaron in front of a desk. Here is Aaron behind a desk.
在这个例子中,Aaron在他的桌子后面,Aaron的图片 <div id="aaron"> <img src="http://www.webmonkey.com.cn/ dynamic_html/tutor/aaron.gif"> </div> <div id="desk"> <img src="http://www.webmonkey.com.cn/ dynamic_html/tutor/extraDesk.gif"> </div> 但是如果我们想让Aaron站在桌子前面,我们可以这样 <div id="desk"> <img src="http://www.webmonkey.com.cn/ dynamic_html/tutor/extraDesk.gif"> </div> <div id="aaron"> <img src="http://www.webmonkey.com.cn/ dynamic_html/tutor/aaron.gif"> </div> 这种类型的分层在HTML暗示编写。所以搭建动态HTML 这里是重新制作后的例子。这次的HTML标识和一起 Aaron has a z-index of 2. The desk has a z-index of 1. Aaron and the desk have an implied z-index.
两个例子的HTML都是相同的,但CSS不同。 <style type="text/css"> #aaron {position:absolute; left: 8px; top: 31px; width: 79px; height: 73px; z-index: 2 } </style> z-index可以是一个正值或一个负值(带负值的元素将 动态HTML教程 本文本站根据《网猴》相关文章改编,版权归《网猴》所有 |