CSS 图像大小
虽然在HTML中,img标签有属性height、width设置高和宽,在工作中却使用得非常少,通常使用CSS来控制大小。
给盒子设置属性height、width限制大小。单位通常是像素。
示例
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>图像大小</
title
>
<
style
type
=
"text/css"
>
/*图像尺寸 大 的*/
img.large {
500px;
height: 500px;}
/*图像尺寸 中 的*/
img.medium {
250px;
height: 250px;}
/*图像尺寸 小 的*/
img.small {
100px;
height: 100px;}
</
style
>
</
head
>
<
body
>
<
h1
>软件开发,成就梦想</
h1
>
</
body
>
</
html
>