我有一个使用 CI & bootstrap 制作的网站。在这种环境中,某些 css 属性无法正确显示。在 CI 中,我有这样的看法:
<html>
<head>
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/bootstrap/css2/bootstrap.css');?>"></link>
</head>
<body>
<div class="container">
<input type="text" class="input-small" id="in_cod_horus" pattern="\D+\d{4,6}" maxlength="7">
</div>
</body>
</html>
在 firebug 的 css 计算检查器中,显示的输入文本的 height 属性是:
高度:6px
同时在css文件中是:
输入[type="text"] → 16px bootstrap.css:438
控制器非常简单:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Merc_inicio extends CI_Controller {
function index()
{
$this->load->view('plantilla');
}
}
?>