我想在这个 php echo 中添加一个浮动正确的样式
<?php echo $PAGE->button; ?>
<?php } ?>
在 HTML 中:
<div class="foo">
<?php echo $PAGE->button; ?>
<?php } ?>
</div>
在 CSS 中:
.foo {
/* some styles here */
}
或者只是简单地,但不推荐内联样式:
<?php echo "<div style='float: right;'>". $PAGE->button ."</div>"; ?>
<?php echo "<div style=\"float:right;\">" . $PAGE->button . "</div>"; ?>
<?php } ?>
这将使整个按钮向右浮动
您有几个选项,首选方法是在 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>
<?php echo "<div style='float: right;'>". $PAGE->button ."</div>"; ?>
你不能给回声功能赋予风格。但是您可以将其包装在 lable 或 p 或任何其他 html 标记中并给出 float: 风格。
像这样,
<p style="float: right;"><?php echo $PAGE->button.?></p>
以更清洁的方式进行操作:
<div style="float: right;"><?php echo $PAGE->button; ?></div>