添加样式以回显

时间:2012-06-01 12:50:09

标签: php css

我想为这个php echo

添加一个浮动右键样式
<?php echo $PAGE->button; ?>
<?php } ?>

6 个答案:

答案 0 :(得分:7)

在HTML中:

<div class="foo">
    <?php echo $PAGE->button; ?>
    <?php } ?>
</div>

在CSS中:

.foo {
    /* some styles here */
}

或者只是简单,但不建议使用内联样式:

<?php echo "<div style='float: right;'>". $PAGE->button ."</div>"; ?>

答案 1 :(得分:1)

<?php echo "<div style=\"float:right;\">" . $PAGE->button . "</div>"; ?>
<?php } ?>

这会将整个按钮浮动到右侧

答案 2 :(得分:0)

<?php echo "<div style='float: right;'>". $PAGE->button ."</div>"; ?>

答案 3 :(得分:0)

你不能给回声功能的风格。但是你可以把它包装在lable或p或任何其他html标签中,并给出float:正确的样式。

像这样,

<p style="float: right;"><?php echo $PAGE->button.?></p>

答案 4 :(得分:0)

以更清洁的方式进行:

<div style="float: right;"><?php echo $PAGE->button; ?></div>

答案 5 :(得分:0)

您有几个选项,首选方法是在CSS文件中定义按钮的值:

  • 由于您不能在每个页面加载时加载更多字节,因此您可以将服务器设置为缓存样式表,从而减少开销。

或者你头脑中的样式表:

  • 这不会为您节省带宽,但会保留样式 html并保持风格。

或者您可以使用内联样式。

<style>
.button{
    float:right;
}
</style>

<!--Using the button class from the stylesheet, Notice how many less characters there is-->
<input type="button" value="Button" class="button" name="B3">
<br /> 

<!--Using the same class from the stylesheet, but wrapping the button within a span-->
<span class="button"><input type="button" value="Button" name="B3"></span>
<br /> 

<!--The inline method-->
<span style="float:right"><input type="button" value="Button" name="B3"></span>