Jump to content
  • 0

Как выровнять ссылки внутри div'а?


green
 Share

Question

Есть div, левая колонка. ширина 20%. Внутри идут кнопки меню, ссылка как блочный элемент display: block с фоном картинкой. Эти ссылки съезжают к левому краю экрана, даже если в параметрах divа стоит text-align: center. Если задавать ссылке margin, даже в процентах, при большом разрешении вс? равно неровно получается. Как выровнять эти картинки-ссылки так, чтобы они были по центру, с равными отступами от кра?в колонки?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

body { 
background-color: #1A1A1A;
width: 100%;
margin: 0;
padding:0;
}

.leftcol {
width: 20%;
float: left;
background-color: #000101;
text-align: center
}

a.menu {
background: url('img/menubutton.png');
border-top: 1px solid #B3B3B3;
border-bottom: 1px solid #2D2D2D;
display: block;
width: 152px;
height: 32px;
font-size: normal;
font-variant: small-caps;
color: #B3B3B3;
font-weight: bold;
text-decoration:none;
text-align: center;
line-height: 170%
}

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-

1251">

<link rel="stylesheet" type="text/css" media="screen" href="main.css

">
</head>
<body>

<div class="leftcol">
<a class="menu" href="#">Новости</a>
<a class="menu" href="#">Фото</a>
<a class="menu" href="films.html">Видео</a>
<a class="menu" href="films.html">Ссылки</a><br/>
</div>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy