博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
<div>里包含<p>标签疑问
阅读量:5948 次
发布时间:2019-06-19

本文共 1948 字,大约阅读时间需要 6 分钟。

<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html 
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
    
<
title
>
左中右版式
</
title
>
    
<
style 
type
="text/css"
>
        body
        
{
            margin
:
 0px
;
            padding
:
 0px
;
            font-family
:
 Arial
;
            color
:
 #060
;
            background-color
:
 #dddddd
;
        
}
        #banner
        
{
            margin
:
0px
;
        
}
        #mainBox
        
{
            margin
:
0px
;
        
}
        #left
        
{
            position
:
 relative
;
            top
:
 0px
;
            left
:
 0px
;
            margin
:
 0px
;
            background
:
 #cce9ff
;
            width
:
 190px
;
 
/*
 固定宽度 
*/
        
}
        #middle
        
{
            padding
:
 10px
;
            background
:
 #ffffff
;
            margin
:
 0px 190px 0px 190px
;
 
/*
 左右空190px 
*/
            margin-top
:
 0px
;
        
}
        #right
        
{
            position
:
 relative
;
            top
:
 0px
;
            right
:
 0px
;
            margin
:
 0px
;
            background
:
 #cce9ff
;
            width
:
 190px
;
        
}
        p
        
{
            font-size
:
 12px
;
            
            margin
:
 20px 0px 0px 20px
;
            padding
:
 10px
;
        
}
        pre
        
{
            font-size
:
 12px
;
            line-height
:
 20px
;
            margin
:
 20px 0px 10px 0px
;
            font-family
:
 arial
;
        
}
    
</
style
>
</
head
>
<
body
>
    
<
div 
id
="banner"
><
img 
src
="banner1.jpg"
 alt
=""
 
/>
    
</
div
>
    
<
div 
id
="mainBox"
>
        
<
div 
id
="left"
>
            
<
p
>
                left
</
p
>
        
</
div
>
        
<
div 
id
="middle"
>
            
<
pre
>
body{
    margin:0px; padding:0px;
    font-family:arial;
    color:#060;
    background-color:#CCC;
}
#left{
    position:absolute;
    top:0px;
    left:0px;
    margin:0px;
    background:#FFF;
    width:190px;/* 固定宽度 */
}
#middle{
    padding:10px;
    background:#FFF;
    margin:0px 190px 0px 190px;/* 左右空190px */
    margin-top:0px;
}
#right{
    position:absolute;
    top:0px;
    right:0px;
    margin:0px;
    background:#FFF;
    width:190px;/* 固定宽度 */
}
p{
    font-size:12px;
    line-height:22px;
    margin:20px 0px 10px 0px; 
    padding:10px;
}
pre{
    font-size:12px;
    line-height:20px;
    margin:20px 0px 10px 0px;
    font-family:arial;
}
</
pre
>
        
</
div
>
        
<
div 
id
="right"
>
            
<
p
>
                right
</
p
>
        
</
div
>
    
</
div
>
    
<
div 
id
="footer"
>
aappooiiuuyy
</
div
>
</
body
>
</
html
>

p标签包含的范围

 

p标签的父标签<div id="left">包含的范围

 

为什么出现如上结果呢?

因为父标签没设置padding属性的原因。

而此问题在ie6不存在。

转载于:https://www.cnblogs.com/samwu/archive/2011/07/29/2120747.html

你可能感兴趣的文章
三大范式
查看>>
wireshark抓取过滤本地封包
查看>>
【android】 浏览文件,如浏览sd卡下的图片文件
查看>>
.net经典书籍
查看>>
小练习-请客吃饭
查看>>
ConcurrentHashMap(Java8)源码分析
查看>>
Python文件处理之文件指针(四)
查看>>
Numpy用法详解
查看>>
DataGridView在vb.net中的操作技巧
查看>>
PMP考试冲刺进行中。。。
查看>>
大换血的代价
查看>>
Learn in FCC(3)
查看>>
RunLoop--
查看>>
chrome 2行换行省略号 ... text-ellipse
查看>>
有用网站
查看>>
注册asp.net 4.0 到iis
查看>>
非负矩阵分解(2):算法推导与实现
查看>>
[LeetCode] Maximal Rectangle
查看>>
linux系统上解决postgres远程连接不上的问题
查看>>
从Redux源码探索最佳实践
查看>>