我想为这个php echo
添加一个浮动右键样式<?php echo $PAGE->button; ?>
<?php } ?>
答案 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文件中定义按钮的值:
或者你头脑中的样式表:
或者您可以使用内联样式。
<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>