Home > Backend Development > PHP Problem > How to set image as background in php

How to set image as background in php

angryTom
Release: 2023-02-26 21:28:01
Original
13647 people have browsed it

How to set image as background in php

We can output the style code in php to change the html background image.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<!-- 通过设置style实现改变背景 -->
<body <?php echo &#39;style="background:url(图片.jpg);"&#39;; ?> >
<form action="DataBase.php" method="post">
用户名:<input type="text" name="username" maxlength="40"/><br/>
密码:<input type="password" name="pwd" maxlength="40"/><br/>
<input type="submit" value="提交"/>
</form>
</body>
</body>
</html>
Copy after login

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

<!-- 在head标签内书写css -->
<style>
body{background:url(背景图片地址);}
</style>
Copy after login

2. Import css files

//main.css文件
body{background:url(背景图片地址);}

//在html文件head标签中引入
<link rel="stylesheet" href="main.css">
Copy after login

For more PHP related knowledge, please visit PHP 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!

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