本文介绍了将背景图像设置为asp.net形式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在asp.net的设计部分中如何拉伸背景图像?
我用下面的线来设置背景图像.图像正在显示,但没有拉伸.
In the designing part of asp.net how to stretch the background image?
I used the below line to set the background image. The image is displaying but it not stretched.
<body background="images.jpg"/>
如何拉伸背景图像?
how to stretch the background image?
推荐答案
<body style="background-image: url(images.jpg); width:100%; height:100%;">
Body of page goes here
</body>
这篇关于将背景图像设置为asp.net形式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!