Various practical skills in css

PHPz
Release: 2017-04-04 11:04:09
Original
1018 people have browsed it

Others List of tips and experiences (*The default operating environment of the following examples is Standard mode):

  1. How to make Layer displayed on flash?

    Method:

    <param name="wmode" value="transparent" />
    
    设置flash的wmode值为transparent或opaque
    Copy after login
  2. How to insert flash on the page using standard methods?

    Method:

    <object id="flash-show" type="application/x-shockwave-flash" data="*.swf">
     <param name="movie" value="*.swf" />
     <param name="wmode" value="transparent" />
     ![](*.jpg)
    </object>
    
    至于flash的宽高可以在css里设置
    Copy after login
  3. How to select the checkbox or radio button when clicking text?

    Method 1:

    <input type="checkbox" id="chk1" name="chk" /><label for="chk1">选项一</label>
    <input type="checkbox" id="chk2" name="chk" /><label for="chk2">选项二</label>
    
    <input type="radio" id="rad1" name="rad" /><label for="rad1">选项一</label>
    <input type="radio" id="rad2" name="rad" /><label for="rad2">选项二</label>
    
    该方式所有主流浏览器都支持
    Copy after login

    Method 2:

    <label><input type="checkbox" name="chk" />选项一</label>
    <label><input type="checkbox" name="chk" />选项二</label>
    
    <label><input type="radio" name="rad" />选项一</label>
    <label><input type="radio" name="rad" />选项二</label>
    
    该方式相比方法1更简洁,但IE6及更早浏览器不支持
    Copy after login
  4. How to switch between Standard Mode and Quirks Mode in IE?

    Triggering of IE6 (add XML declaration before DTD declaration):

    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE html>
    
    IE5.5及更早浏览器版本直接以Quirks Mode解析。
    Copy after login

    Triggering of all IE versions (in DTD Add HTML comment before the declaration):

    <!-- Let IE into quirks mode -->
    <!DOCTYPE html>
    
    当没有DTD声明时,所有IE版本也会进入Quirks Mode。
    Copy after login
  5. How to distinguish display:none from visibility: hidden?

    Method:

    相同的是display:none与visibility:hidden都可以用来隐藏某个元素;
    不同的是display:none在隐藏元素的时候,将其占位空间也去掉;
    而visibility:hidden只是隐藏了内容而已,其占位空间仍然保留。
    Copy after login
  6. How to set the iframe background to be transparent under IE?

    Method:

    设置iframe元素的标签属性allowtransparency="allowtransparency"
    然后设置iframe内部页面的body背景色为transparent。
    不过由此会引发IE下一些其它问题,
    如:设置透明后的iframe将不能遮住select
    Copy after login


The above is the detailed content of Various practical skills in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!