CSS:
#header_bar
{
background-repeat: repeat-x;
width:100%;
}
.langpnl
{
float:right;
padding-top: 2px;
padding-right: 0px;
position:relative;
width:45px;
height:16px;
font-size:7pt;
}
#imgLogo
{
width: 156px;
height: 42px;
}
<!-- header.ascx -->
<div id="header_bar">
<div align="center">
<a href="<%=AppPath%>" target="_parent" >
<img id="imgLogo" runat="server" src="~/images/UI/logo.jpg" border="0" /></a>
<asp:DropDownList ID="ddlLanguage" class="langpnl" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlLanguage_SelectedIndexChanged">
<asp:ListItem Value="">EN</asp:ListItem>
<asp:ListItem Value="es-ES">ES</asp:ListItem>
</asp:DropDownList>
</div>
</div>
<!-- /header.ascx -->
我正在尝试将图像放在中央,将下拉框对齐到右上角。目前我能够做到,但图像左侧略显偏差。如果我删除了下拉框,那么它就会进入中心。 在系统浏览器中你无法弄明白,但这是一个移动网站&amp;在移动视图中,您可以找出差异。
答案 0 :(得分:4)
这是实现您所需要的一种方式:
答案 1 :(得分:0)
您绝对可以定位下拉列表 - DEMO
答案 2 :(得分:0)
<!-- header.ascx -->
<div id="header_bar">
<div id="header_logo_holder">
<a href="<%=AppPath%>" target="_parent" >
<img id="imgLogo" runat="server" src="~/images/UI/logo.jpg" border="0" /></a>
<asp:DropDownList ID="ddlLanguage" class="langpnl" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlLanguage_SelectedIndexChanged">
<asp:ListItem Value="">EN</asp:ListItem>
<asp:ListItem Value="es-ES">ES</asp:ListItem>
</asp:DropDownList>
</div>
</div>
<!-- /header.ascx -->
“header_logo_holder”的CSS代码
#header_logo_holder {
width: 156px;
margin:0px auto 0px auto;
}
答案 3 :(得分:0)
由于.langpnl
有position:relative
,因此您的定位流程仍占用空间
尝试:
.langpnl {
position:absolute;
right: 0;
}
#header_bar {
position: relative;
}
答案 4 :(得分:0)
#header_bar {
background-repeat: repeat-x;
width: 100%;
padding: 0;
margin: 0; /* New */
}
.langpnl {
float: right;
padding-top: 2px;
padding-right: 0px;
position: relative;
width: 45px;
height: 16px;
font-size: 7pt;
vertical-align: top; /* New */
}
#imgLogo {
width: 130px;
height: 35px;
text-align: center;
border:0px; /* New */
}
这解决了这个问题。