该元素应用form-text和required两个式样,在css定义里应该可以查到
.form-text{}
.required{}

解决方案 »

  1.   

    一共有两个common.css和style两个样式表。我只查到.form-text
    但没有.required
    但是有.form-required
    如下:
    .er, .form-required {
      color: #f00;
    }
    .more-link {
      text-align: right;
    }
    .node-form .form-text {
      display: block;
      width: 95%;
    }
    这个required是不是还有别的用处啊
      

  2.   

    <div class="block block-user" id="block-user-1">
     <h2 class="title"><?php echo $_SESSION["username"]; ?></h2>
     <div class="content">
    <ul class="menu">
    <li class="leaf"><a href="account.php" class="active">我的帐户</a></li>
    <li class="leaf"><a href="admin.php" >用户列表</a></li>
    <li class="leaf"><a href="logout.php">注销登录</a></li></ul>
    </div>
    </div>这个代码的<div class="block block-user" id="block-user-1">中的block-user也不存在与两个样式表中时不时和那个类似?
      

  3.   

    也有可能不是单独定义的,比如 类似有 xxx.required xxxx.block-user
    example
    <html>
    <head>
    <style>
    .abc{color:#FF0000;}
    .def.req{font-size:36px;}
    .ht.req{text-decoration:underline;}
    </style>
    </head><body>
    <div class="abc req">xxx</div>
    </body>
    </html>