发布网友 发布时间:2022-04-06 12:48
共4个回答
热心网友 时间:2022-04-06 14:18
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:
<img style="position: absolute;right: 0;top:0;" src="small2.png" />
<img style="position: absolute;right: 0;bottom:0;" src="small3.png" />
3、浏览器运行index.html页面,此时一张图片被固定右上角,另一张图片被固定右下角。
热心网友 时间:2022-04-06 15:36
把图片(背景)定在右上角css样式如下:
<div style="background:url(160840259.jpg) no-repeat right top;width:1000px;height:280px;border:1px #333 solid;"></div>把图片(背景)定在右下角css样式如下:
<div style="background: url(160840259.jpg) no-repeat right bottom;width:1000px;height:280px;border:1px #333 solid;"></div>效果如下
为了区分,在div层中设置了边框颜色。
起决定作用的代码是:
background:url(160840259.jpg) no-repeat right top;如果要靠左上代码如下:
background:url(160840259.jpg) no-repeat left top;如果要靠左下代码如下:
热心网友 时间:2022-04-06 17:10
简单的写:热心网友 时间:2022-04-06 19:02
.bg1 {