jsp에서 사진을 배경으로 설정하는 방법은 무엇인가요? 두 가지 해결책이 있습니다.
먼저 이미지를 img 폴더에 넣으세요. img는 MyEclipse의 WebRoot에 위치합니다. 그렇지 않으면 경로가 잘못될 수 있습니다.
(1):
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body background="img/1.jpg"> </body> </html>
(2):
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> .b{background-image:url(img/1.jpg)} </style> </head> <body Class="b"> </body> </html>
CSS를 별도로 작성할 수도 있으며, 모든 페이지에서 사용할 수 있습니다. . CSS 링크의 이름을 부르면 됩니다.
위 내용은 jsp에서 이미지를 배경으로 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!