这里有一种方法:在HTML文件中使用CSS的那一部分。使用双引号“ ”并将PHP文件写入其中。下面是在 CSS 文件中使用 PHP 的示例。
这个CSS在HTML文件中,这个代码在我的项目上工作正常。如果任何问题将测试它,请告诉我。
<style type="text/css">
@media screen and (max-width: 650px) {
.benifit {
background-image:url("<?= $this->getBaseUrl() ?>/www/images/Capture.png") ;
height:440px;
border-radius: 5px 0px 0px 5px;
}
}
@media screen and (min-width: 400px) {
.benifit {
width: 47%;
background-image:url("<?= $this->getBaseUrl() ?>/www/images/Capture.png") ;
height:440px;
border-radius: 5px 0px 0px 5px;
}
}
#ajax-loader {
height: 100%;
width: 100%;
background: rgba( 255, 255, 255, .8 ) url("<?= $this->getBaseUrl() ?>/www/img/ajax-loader1.gif") 50% 50% no-repeat;
overflow: hidden;
}
</style>