모바일 로고 가운데 정렬
본문
http://wooriter.kr/~chsan/m/index.html
url 이구요
.logo{margin:0 auto;padding:0px 0;width:120px;text-align:center; position: relative;float:left;}
css값 바로 줬는데도 안되네요 ㅜㅜ
float:left;빼버리면 tel버튼이 떨어져요 ㅜㅜㅜ
답변 1
<div class="topheader clearfix">
<a class="t_btn" style="float: left;"><img alt="메뉴버튼" src="images/menu.jpg"></a>
<a style="float: right;" href="tel:*** 개인정보보호를 위한 전화번호 노출방지 ***"><img alt="메뉴버튼" src="images/tel.jpg"></a><h1 class="logo"><a href="http://wooriter.kr/~chsan/m/index.html"><img alt="logo" src="images/logo.png"></a></h1>
</div>
/*media all*/
.logo {
margin: 0 auto;
padding: 0px 0;
width: 120px;
text-align: center;
position: absolute;
left: 50%;
margin-left: -70px;
}
!-->
답변을 작성하시기 전에 로그인 해주세요.