减少cakephp中文本框的大小

时间:2013-02-12 05:26:51

标签: php html cakephp

您好我想在我的网站上放置一个文本框进行搜索操作。但是,当我只使用代码打印文本框时,文本框覆盖了整个页面。我的要求是将文本框放在页面的右侧,文本框的大小也必须非常小。

这是我试过的,

  <div align="right">
  <?php echo $this->Form->create('Post') ?>
  <?php echo $this->Form->input('Search',array('type'=>'text','maxlength'=>'8')) ?>
  </div>

任何人都可以帮帮我吗?

1 个答案:

答案 0 :(得分:3)

您可以在文本框中添加style,例如:

 echo $this->Form->input('Search',array('type'=>'text','maxlength'=>'8','style'=>'width:50px; height:20px;'));

替代方法是使用textbox的size属性。

echo $this->Form->input('Search',array('type'=>'text','maxlength'=>'8','size'=>'8'));