适用于手机的基于文本的网站?
我在移动设备上测试了我的网站,加载速度非常快。但是我必须向右滚动才能看到所有文本。文字也很大。
我怎样才能重新设计我的网站,这样我就不需要做任何滚动并且有更小的文本?我知道我以前见过这个,但我不记得哪个网站做了它。
我删除了 css,设备向右滚动,直到最大 div 的末尾。所以我需要CSS来解决这个问题吗?我需要什么CSS来使文本变小并且不会导致用户滚动(水平),无论他的屏幕有多小?
另外,我是否检测 .NET 中的用户代理并链接备用 css 文件,或者是否检测在其他地方使用哪个 css?
I tested my site on a mobile device and it loaded pretty quickly. However i had to scroll right to see all of the text. The text was pretty big as well.
How can i redesign my site so i dont need to do any scrolling and have smaller text? I know i I seen this before but i cant remember what site did it.
i removed my css and the device scrolled right until the end of my largest div. So i need css to solve this? What css do i need to make the text not big and not cause the user to scroll (horz) no matter how small his screen is?
Also do i detect the user agent in .NET and link an alternative css file or do i detect which css to use elsewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您应该为您网站的移动版本设计一个自己的 css 文件。要么检查用户代理是否是手持设备,要么使用 css 媒体类型手持设备(旧版浏览器不支持)来加载不同的 css 文件。
编辑:
使用CSS,您还可以用文本替换图像
yes you should design an own css-file for the mobile version of your website. either you check the useragent if it's a handheld or you work with the css media type handheld (which is not supported by older browsers) to load the different css-file.
edit:
with css you can also replace images with text