0

私は問題を抱えています:<div class='navbar_item navbar_item_active font_colaboratelight' id='nav_".$navbarlink_id."_active' style='float:left;color:#ffffff;'>

フロート内の要素は問題なく...私はすべてを試してきましたが、これを修正する唯一の方法は、フロート要素に幅を設定することです。これは、内容がわからないため、非常に実用的ではありません.. .

これを修正する方法についてのアイデアはありますか?

echo "<div style='width:960px;height:37px;margin-left:auto;margin-right:auto;'>
    <div style='height:37px;background:url(/system/images/navbar/background/1.png);position:absolute;left:0px;right:0px;z-index:-1;'></div>
        <div id='navbar_content' style='line-height:0px;width:960px;'>";


            // get navbar shortcuts
            $links = frontend_getnavbarlinks("sid_".$shop_id,$lang);

            foreach($links as &$link){

                $navbarlink_id = $link['id'];

                $link_section_arr = explode(':',$link['section']);
                $sectionlink_type = $link_section_arr[0];
                $sectionlink_id = $link_section_arr[1];

                if($link_section_arr[0] == 'c'){
                    $href = "/catalog/".$sectionlink_id."/";
                }

                echo "
                <a href='".$href."' class='toggle_reconstruct'>

                <div class='navbar_item navbar_item_active font_colaboratelight' id='nav_".$navbarlink_id."_active' style='float:left;color:#ffffff;'>
                    <div style='float:left;'><img src='/system/images/navbar/background_active/1_left.png'></div>
                    <div style='float:left;background:url(/system/images/navbar/background_active/1_middle.png);background-repeat:repeat-x;height:37px;'>
                        <div style='float:left;color:#E46F7B;font-size:15px;margin-right:6px;margin-left:6px;margin-top:12px;'>".$link['info']['label']."</div>
                    </div>
                    <div style='float:left;'><img src='/system/images/navbar/background_active/1_right.png'></div>
                    <div style='clear:both;'></div>
                </div>

                <div class='navbar_item navbar_item_inactive font_colaboratelight nav_btn_".$sectionlink_type.$sectionlink_id."' id='nav_".$navbarlink_id."_inactive' style='float:left;color:#ffffff;'>
                    <input type='text' value='".$link['does_expand']."' class='nav_expand_indicator' style='display:none;'>
                    <input type='text' value='".$navbarlink_id."' class='nav_section_id' style='display:none;'>
                    <input type='text' value='".$sectionlink_id."' class='nav_sectionlink_id' style='display:none;'>

                    <div style='padding-left:10px;padding-right:10px;height:37px;'>
                        <div style='float:left;color:#ffffff;font-size:15px;margin-right:6px;margin-left:6px;margin-top:12px;'>".$link['info']['label']."</div>
                    </div>
                </div>

                </a>
                ";

            }



                echo "
                <div style='clear:both;'></div>
        </div>
    </div>
    <div style='clear:both;'></div>



    <div id='navbar_expand1'></div>";
4

3 に答える 3

0

float:leftをdivnavbar_contentに指定して試してください

于 2013-01-01T07:08:12.463 に答える
0

以下のこのコードを試してください。

それはあなたに役立つかもしれません。

'表示:インラインブロック'

于 2013-01-01T10:06:03.930 に答える
0

何らかの理由で、他の方法で宣言されていない場合、opera は私の font-size を 0px に設定し続けるので、font-size:1px; を設定する必要がありました。font-size が必要ないか、明示的に設定されていない場所...

于 2013-01-02T00:22:54.203 に答える