css – 如何使我的形象?

前端之家收集整理的这篇文章主要介绍了css – 如何使我的形象?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个美丽的小CSS图像,需要一个按钮.我尝试了大约20种不同的方法,其中没有一种方法工作.我只是没有任何东西,或者没有内在的边框.

html:http://lrroberts0122.github.com/DWS/lab6/level-2/

形象:http://lrroberts0122.github.com/DWS/lab6/level-2/images/button.png

CSS:http://lrroberts0122.github.com/DWS/lab6/level-2/css/main.css

我不能因为某些原因将其更改为“提交”,所以我需要弄清楚如何使用CSS进行工作.感谢您的帮助!

解决方法

input[type=submit] {
    background: url(http://lrroberts0122.github.com/DWS/lab6/level-2/images/button.png);
    border: 0;
    display: block;
    height: _the_image_height;
    width: _the_image_width;
}
原文链接:https://www.f2er.com/css/216737.html

猜你在找的CSS相关文章