作者:广东在线游戏网日期:
返回目录:游戏策略
html中使图片居中的代码是:<img src="" alt="" align="center" />
在html中插入图片使用img标签,它有src属性用于填写该图片的路径,alt属性作用是当图片显示失败时就显示alt中的文字。7a64e59b9ee7ad94335
设置图片的宽用width,高用height,上下左右的位置分别用margin-top,margin-bottom,margin-left,margin-right,代码如下:
<!DOCTYPE html>
<html>
<head>
<title>image</title>
<meta charset="utf-8">
<style type="text/css">
.myImage{
width: 400px;
height: 300px;
margin-top: 100px;
margin-left: 100px;
}
</style>
</head>
<body>
<img src="images/cat.jpg" class="myImage" alt="小猫">
</body>
</html>
扩展资料:
img标签的其它常用属性:align属性应用于图像和周围文本的对齐方式,border属性应用于图像边框值。
img 标签向网页中嵌入一幅图像,从技术上讲,<img> 标签并不会在网页中插入图像,而是从网页上链接图像,<img> 标签创建的是被引用图像的占位空间。
参考资料:
百度百科-image标签
<div style=" width:300px; height:auto;">
<ul>
<li style=" float:left; width:100px; text-align:center;"><img alt="" src="../../images/1.png" /></li>
<li><img alt="" src="../../images/2.png" /></li>
</ul>
</div>
li里的宽复度设置的比图制片宽度宽点就zdOK了
source : n. 来源
即图像的来源为后面的图形名称。