首頁  >  文章  >  後端開發  >  php怎麼把圖片設為背景

php怎麼把圖片設為背景

angryTom
angryTom原創
2019-10-16 15:39:4413598瀏覽

php怎麼把圖片設為背景

我們可以在php中輸出樣式程式碼,達到改變html背景圖片的目的。

<!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>

但是不建議在php程式碼中輸出樣式文件,應該在html文檔中書寫,或單獨寫css樣式文件,在html中引入。

1、在html中寫css

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

2、引入css檔案

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

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

更多PHP相關知識,請造訪PHP中文網

以上是php怎麼把圖片設為背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多