html按钮位置设定
方法一:绝对定位布局,利用定位,可以将按钮放到任意位置1)将包含按钮的父级标签设置为相对定位.d2{width:500px;height:300px;background:#660099;position:relative; /设置源相对定位/}2)将按钮设置为绝对定位,百设置左边的距离,顶部的距离.btn2{background:#99ff00;position:absolute;left:10
·
方法一:绝对定位布局,利用定位,可以将按钮放到任意位置
1)将包含按钮的父级标签设置为相对定位
.d2{
width:500px;
height:300px;
background:#660099;
position:relative; /设置源相对定位/
}
2)将按钮设置为绝对定位,百设置左边的距离,顶部的距离
.btn2{
background:#99ff00;
position:absolute;
left:100px;
top:120px;
}
更多推荐
已为社区贡献3条内容
所有评论(0)