通过position将div中的内容移出显示

阅读更多

 
Left Marginal
 
 
 
 




 

Left Marginal

Heading

You want to excerpt an element and move it into the left margin.

 

CSS:

 

*.left-marginal {
    position: relative;
    margin-left: 200px;
}
/*
 * 相对上面来左移200px 这样可以将h2中的内容移出div,进行相对定位
 */
*.marginal-heading {
    position: absolute;
    left: -200px;
    top: 0;
    margin: 0;
}

 

你可能感兴趣的:(CSS,XHTML,HTML,XML)