html+css实战64-综合案例3-图片完成

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <style>
        body{
            background-color: #f5f5f5;
        }
        .goods{
            width: 234px;
            height: 300px;
            background-color: #fff;
            /* 样式居中 */
            margin: 0 auto;
            text-align: center;
        }
        img{
            width: 160px;
        }
    </style>
</body>
<div class="goods">
    <img src="./images/geyao.jpg" alt="歌谣" title="歌谣">
</div>
</html>

 运行结果

猜你喜欢

转载自blog.csdn.net/geyaoisnice/article/details/125089301