如何在codeigniter中使用css为表单设置样式

时间:2017-07-18 07:53:51

标签: php html css codeigniter

是否可以在codeigniter上添加css?请帮我在下面的代码中添加css

  echo validation_errors();
  echo "email :".form_input('email', '');
  echo "Password :".form_password('password', '');
  echo "Password Confirmation :".form_password('passconf', '');
  echo form_submit('submit', 'Submit');
  • 以上是我的密码重置视图文件,请帮我用任何css示例设置上述代码的样式

  • 如何在上面的代码中添加类?

  • 是否可以添加JavaScript?

1 个答案:

答案 0 :(得分:1)

<?php

$data = array(
  'name'        => 'email',
  'value'          => '',
  'class'       => 'email_Input', // Create class name and use this class name in your .css file
  'style'       => 'height:30px' // Or, write property here itself
);

echo form_input($data);
?>

阅读How to add attributes using codeigniter form helper