6.2

发布时间 2023-06-11 11:17:49作者: 一个不会起名字的人

今天学习了css的图像拼和技术.

<!DOCTYPE html>

<html>

<head>

<style>

    img.home {

        width: 46px;

        height: 44px;

        background: url(/statics/images/course/img_navsprites.gif) 0 0;

    }

    

    img.next {

        width: 43px;

        height: 44px;

        background: url(/statics/images/course/img_navsprites.gif) -91px 0;

    }

</style>

</head>

<body>

 

    <img class="home" src="/statics/images/course/img_trans.gif"><br><br>

    <img class="next" src="/statics/images/course/img_trans.gif">

 

</body>

</html>