Home>Article>Backend Development> How to set image as background in php
We can output the style code in php to change the html background image.
Document >
However, it is not recommended to output the style file in the PHP code. It should be written in the HTML document, or the CSS style file should be written separately and introduced in the HTML.
1. Write css in html
2. Import css files
//main.css文件 body{background:url(背景图片地址);} //在html文件head标签中引入
For more PHP related knowledge, please visitPHP Chinese website!
The above is the detailed content of How to set image as background in php. For more information, please follow other related articles on the PHP Chinese website!