Jump to content
  • 0

Вертикальное выравнивание по центру <li> а текст


Sel-p
 Share

Question

Добрый день. Есть проблема текст не могу выровнять по центру (вертикально).

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="SHORTCUT ICON" href="favicon.ico" />
<title>Документ без названия</title>
</head>

<body>
<table width="960" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="100"> </td>
</tr>
<tr>
<td height="50">
<table width="960" border="0" cellspacing="0" cellpadding="0" class="pageList">
<tr>
<td width="192" style="border-left:1px solid #fff" align="center"><a href=""><li></li></a></td>
<td width="192" style="border-left:1px solid #333" align="center"><a href=""><li>Фаркопы</li></a></td>
<td width="192" style="border-left:1px solid #333" align="center"><a href=""><li>Фаркопы VFM</li></a></td>
<td width="192" style="border-left:1px solid #333" align="center"><a href=""><li>Электрооборудование</li></a></td>
<td width="192" style="border-left:1px solid #333" align="center"><a href=""><li></li></a></td>
</tr>
</table>

</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>

</body>
</html>

CSS

@charset "windows-1251";
/* CSS Document */

body {
margin:0;
padding:0;
}
a {
color: #000000;
text-decoration: none;
}
a:hover {
color: #F60;
text-decoration: underline;
}
.pageList {
font-style: normal;
/* обнуляем отсупы */
margin: 0;
padding: 0;
}
.pageList li {
display:block;
margin-bottom: 0px;
width: 192px;
height: 45px;
border: 0px;
display:table-cell;
}
.pageList a {
text-align: center;
display:table-cell;
font-size: 16px;
color: #fff;
padding: 0px 0px;
background-color:#C00;
font-weight:bold;
font-family:Arial, Helvetica, sans-serif;
}
.pageList a:hover {
text-decoration: none;
color: #CCC;
background: #F00;
}

Скриншот

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Что это вообще? Вы, как бы, в курсе, что li — дочерний элемент ul и должен находиться только в нём?

В курсе, но хочу сделать так. Если готовы предложить альтернативу я только за.

Edited by Sel-p
Link to comment
Share on other sites

  • 0

Что это вообще? Вы, как бы, в курсе, что li — дочерний элемент ul и должен находиться только в нём?

В курсе, но хочу сделать так. Если готовы предложить альтернативу я только за.

что значит вы хотите сделать так? )))) если вы захотите в стиральной машине сделать куру гриль думаете найдете решение сделать? ))

если вам нужен инлайн элемент используйте span. А li это элемент относящийся к спискам, а не просто тег который можно пихать куда угодно.

Edited by wwt
Link to comment
Share on other sites

  • 0

удалите вообще теги li, уберите из стилей стили для li, уберите из стилей display:table-cell; он там ненужен

Есть.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link rel="SHORTCUT ICON" href="favicon.ico" />
<title>Документ без названия</title>
</head>

<body>
<table width="960" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="100"> </td>
</tr>
<tr>
<td height="50">
<table width="960" border="0" cellspacing="0" cellpadding="0" class="pageList">
<tr>
<td width="190" height="45" style="border-left:1px solid #fff"><a href=""><span></span></a></td>
<td width="190" height="45" style="border-left:1px solid #333"><a href=""><span>Фаркопы</span></a></td>
<td width="190" height="45" style="border-left:1px solid #333"><a href=""><span>Фаркопы VFM</span></a></td>
<td width="190" height="45" style="border-left:1px solid #333"><a href=""><span>Электрооборудование</span></a></td>
<td width="190" height="45" style="border-left:1px solid #333"><a href=""><span></span></a></td>
</tr>
</table>

</td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>

</body>
</html>

@charset "windows-1251";
/* CSS Document */

body {
margin:0;
padding:0;
}
a {
color: #000000;
text-decoration: none;
}
a:hover {
color: #F60;
text-decoration: underline;
}
.pageList {
font-style: normal;
/* обнуляем отсупы */
margin: 0;
padding: 0;
}
.pageList span {
margin-bottom: 0px;
width: 190px;
height: 45px;
border: 0px;
}
.pageList a {
display:block;
text-align: center;
font-size: 16px;
color: #fff;
background-color:#C00;
font-weight:bold;
font-family:Arial, Helvetica, sans-serif;
height: 45px;
}
.pageList a:hover {
text-decoration: none;
color: #CCC;
background: #F00;
}

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