html5中如何导入图片
发布网友
发布时间:2022-04-23 16:23
我来回答
共2个回答
热心网友
时间:2022-04-20 07:56
具体方法如下:
<img src="图片路径" alt="图片描述">
例:<img src="img/pro1.png" alt="">
html5中设置整页背景图片的方法是利用css3样式:
/* Set up proportionate scaling */
width: 100%;
height: auto;
/* Set up positioning */
position: fixed;
top: 0;
left: 0;
}
@media screen and (max-width: 1024px) { /* Specific to this particular image */
img.bg {
left: 50%;
margin-left: -512px; /* 50% */
}
}
热心网友
时间:2022-04-20 09:14
<img src="图片路径" alt="图片描述">
例:<img src="img/pro1.png" alt="">