윈도우웹브라우저에선 되는데...구글크롬에서는안되요
흰꽃
[html]
asp:Panel ID=pnl2 runat=server Visible=false CssClass=listbox04
asp:Repeater ID=rpt1 runat=server
HeaderTemplate
ul class=menu
/HeaderTemplate
ItemTemplate
li
span class=bake%# Eval(title) %[%# Eval(building) %]/span br /
span class=bake3등록번호:%# Eval(NO) % ┃청구기호:%# Eval(num) % ┃%# Eval(cond1) %/span
/li
/ItemTemplate
FooterTemplate
/ul
/FooterTemplate
/asp:Repeater
/asp:Panel
asp:Panel ID=pnl3 runat=server Visible=falsespan class=bake검색된 결과가 없습니다. /span/asp:Panel=============================
[css]
#middle .listbox04 {
margin:0;
}
#middle .listbox04 .menu {
background:url(../img/menulist03_bg.gif) repeat top;
font:11px 돋움,Arial;
list-style:none;
line-height:64px;}
#middle .listbox04 .menu li {
line-height:64px;
list-style:none;
color:#6f6f6f;
font-size:12px;}
#middle .listbox04 .menu li img {
margin:10px 0;
padding:0;
vertical-align:middle;
}
#middle .listbox04 .menu li a {
color:#3b3b3b;
text-decoration:none;
display:block;
padding:0 20px;
}
span.bake3 {font-size:11px;
color:#6f6f6f;
line-height:32px;
list-style:none;
}
span.bake {font-size:12px;
color:#515151;
line-height:32px;
list-style:none;
}
==========================================
윈도우웹브라우저에선 되는데...구글크롬에서는안되요
-
초코맛사탕
bake, bake3 에 있는 line-height:32px 때문인듯 보여요 ..
-
미리별
디폴트 css에 br 태그가 디스플레이 none 처리된것 같은데...
.listbox04 .menu li span {display:block;} 추가해주세요.