0

有些东西我不明白我不明白为什么我有height:42px和没有height:395px

当我用萤火虫显示代码时,我看到了

<form id="new_user" class="wizard" style="height: 42px;" method="post" action="/users" accept-charset="UTF-8">

但在我看来我有这个

<div class="contentbox">
    <div id="wizard", style="left: 0px; position: relative;">
        <div class="container_12 clearfix leading">
            <div class="grid12">

  <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html=> { :class => "wizard",:style => 'height: 395px' }) do |f| %>
     <%= devise_error_messages! %>


                        <!-- wizard -->
                        <form action="#" class="wizard" novalidate>
                            <nav>
                                <ul class="clearfix">
                                    <li class="active"><strong>1.</strong> Identification</li>
                                    <li><strong>2.</strong> Information </li>
                                    <li><strong>3.</strong> Finalisation</li>
                                </ul>
                            </nav>

你知道为什么我得到height:42px而不是height:395px吗?

4

1 回答 1

0

使用样式表而不是内联样式可能会更好,但我认为这只是一个缺失的问题;

:html=> { :class => "wizard",:style => 'height: 395px;' }

如果你的样式表有冲突,你也可以放

:html=> { :class => "wizard",:style => 'height: 395px !important;' }
于 2013-06-12T22:41:36.630 回答