English 中文(简体)
彩虹桌子重叠
原标题:HTML table cells overlapping on Blackberry

我有以下超文本:

<table><tr>
    <td>Search: </td>
    <td> .GetCategoryDropdownList(). </td>
    <td>for: </td>
    <td class="input">
        <input class="header-right-search" type="text" name="q" placeholder="Search by         Book Name, Author, Module Code, or Module Name" style="width: 100%;" />
    </td>
    <td><input type=submit value="GO" class="yellowhighlightbutton" /></td>
</tr></table>

如果“GetCategoryDropdownList()”只是为了简单地 drop缩而将超文本退回。

该表显示所有网络浏览器(包括roid/听器/etc)的罚款,每张桌子的面积为零,但在黑莓,电池的重叠。

Do you know why this is happening or any way to fix it?

增 编

GetCategoryDropdownList()

function GetCategoryDropdownList()
{
    $query = sprintf("SELECT %scategorylist.* FROM %scategorylist", dbprefix, dbprefix, dbprefix);
    $catlist = DbQuery($query);
    $catselect =  <select class="header-category-select" name="category_select"> ;
    foreach($catlist as $cat)
    {
        if($cat[ Code ] ==  catAll )
        {
            $catselect = $catselect.sprintf("<option class="header-category-option" value="%s" selected="selected">%s</option>",$cat[ Code ],$cat[ Name ]);
        }
        else
        {
            $catselect = $catselect.sprintf("<option class="header-category-option" value="%s">%s</option>",$cat[ Code ],$cat[ Name ]);
        }
    }
    $catselect = $catselect. </select> ;
    return $catselect;
}

所有这些都使菜单下降,除黑莓外,每张平台都正确显示。

问题回答

请准予<> GetCategoryDropdownList( Code? 你们是否也为在一个移动网站上展示打了正确的头盔? 用于黑莓浏览器

<meta name=”HandheldFriendly” content=”True” />

http://docs.blackberry.com/en/developers/deliverables/6176/spanish_ref_meta_564143_11.jsp”rel=“nofollow” http://docs.blackberry.com/en/developers/deliverables/6176/spanish_ref_meta_564143_11.jsp/a。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签