我想为所有应该固定在中心的 PHP 页面添加水印图像。
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/css/wstyle.css">
wstyle.css文件
body {
background-image: url('../images/anna.png');
background-size: auto;
}
图片未加载到我的页面中。 如何解决? 有没有替代方法?
试试这个。
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/css/wstyle.css">
wstyle.css
body {
background: url(../images/anna.png) no-repeat;
background-position: 50% 50%;
background-size: auto;}
对于所有页面
,在视图标题中创建新文件.php请将该代码放入此文件中
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/css/wstyle.css">
呼叫标头.php在所有控制器中
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Home extends CI_Controller {
function __construct() {
parent::__construct();
}
function index() {
$this->load->view('header');
$this->load->view('home');
}
}
?>