在 ASP.NET 中拉伸图像
我的图像宽度为 1000px。 如果我使用 style="width:800px" 它效果很好,但如果我使用 Style="width:1500px"。它不会拉伸我的图像并将其保留为 1000px。
如何使图片拉伸?
My image has a width of 1000px.
If i'm using style="width:800px" it works great but if I use Style="width:1500px". it doesn't stretch my image and leaves it at 1000px.
how do I make my picture stretch?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,这是一个 HTML 和 css 问题(客户端),而不是专门的 ASP.NET 问题,因此无论服务器端技术如何,答案都将适用。
如果您希望其拉伸,则需要显式设置两者高度和宽度。如果您指定其中之一,浏览器会自动调整未指定的一项以保持比例。
First, this is an HTML and css question (client side), not specifically an asp.net question, so the answer will apply regardless of the server-side technology.
If you want it to stretch, you need to set both the height and width explicitly. If you specify one or the other, the browser automatically adjusts the one that's not specified to maintain proportions.