Home > Backend Development > PHP Tutorial > php是怎么调用Css样式的

php是怎么调用Css样式的

WBOY
Release: 2016-06-23 14:25:06
Original
2270 people have browsed it

php css

我找了好久  找不到

回复讨论(解决方案)

css和php无关

跟在HTML里一样引用css文件.或者直接在文件里写CSS代码

那如果我要修改php的样式   要怎么办呢

你要理解php只是输出一段文字,这段文字可以是任何格式的(例如普通的文本也可以、excel格式也可以)
而恰好当这段文字的格式是html格式的时候可以当作网页

换言之,css影响的只是php输出的网页,而不是php程序本身,而且会在用户的浏览器才起作用
要修改网页样式的话,就在php输出时使用一个引用css文件的语句,然后在css文件内修改

大概这样

<?phpecho "<link rel=\"stylesheet\" type=\"text/css\" href=\"theme.css\" />";?>
Copy after login

css是修饰页面的,php不调用

用dreamweaver 可以自动生成对应HTML代码

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template