如何在PHP标记下的div上添加CSS样式

时间:2016-04-11 15:29:55

标签: php css

enter image description here基本上,我在php标签下有一个div。我已经尝试为它添加一个样式,但它没有一个工作。我只需要申请保证金。也许我的代码不正确。一些帮助?这是jsfiddle链接。

CSS:

.result_text{
    margin-right: 25%;: 
}
.result_text a{
    margin-right: 25%;
}

PHP:

 <?php
    echo "<div class='result_text'> <a href='#' > This is a sample text  </a> </div>" ;
 ?>

https://jsfiddle.net/cpj9s2p5/

4 个答案:

答案 0 :(得分:0)

试试这样:

<?php
echo "<div class='result_text' style='margin-right: 20px;'> <a href='#' > This is a sample text</a></div>";
?>

答案 1 :(得分:0)

<?php echo "<div class='result_text'>"." <a href='#' >"." This is a sample text"." </a>"." </div>" ; ?>

了解有关concat的更多信息。

答案 2 :(得分:0)

 <?php
echo "<div class='result_text' style='margin-right: 20px !important;'> <a href='#' > This is a sample text  </a> </div>" ;


?>

别忘了!重要的是你的风格

答案 3 :(得分:0)

你的小提琴的问题在于你没有运行PHP,只是HTML和rootca.bks被注释掉了。如果您在服务器上运行PHP,则此代码应按预期工作。