如何在使用 PHP 开发的移动应用程序网站中包含 CSS
我想知道如何在使用 PHP 为移动应用程序构建的网站中包含 CSS 文件。
我有一个使用 HTML、PHP 和 CSS 构建的网站。现在我必须使该网站在手机中正确对齐。我已经可以在移动设备上查看内容,但是我在网站中包含的 css 没有添加,因此文本、字体等所有内容在移动设备上都无法正确显示。事实上在“页面源”中,最初包含的css是看不到的。那么有没有什么不同的方法来包含移动应用程序的 css?
谁能帮我解决这个问题。
I want to know how we can include CSS file in a website build using PHP for mobile application.
I have a site which is build using HTML,PHP, and CSS. Now I have to make that site properly aligned in mobile phones. I already can view the content on mobile, but the css which I have included in the site is not getting added, and so the text, font, everything is not properly visible on mobile. Infact in "page source", the css which is initially included cannot be seen. So is there any different way to include a css for mobile applications.
Can anyone help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定您在问什么,但您可以通过在 html
标记中使用以下内容为手持设备添加特定样式表。
您可以获得以下方面的更多信息:
Not sure what you are asking but you can add a specific style sheet for handheld devices by using the following in your html
<head>
tag.You can get more information on:
一般来说,您可以将样式表包含到 HTML 中,如下所示:
In general you include stylesheets into HTML like this: