Jump to content
  • 0

Проблема с padding


sergiyko
 Share

Question

Здравствуйте

Хочу сделать на кнопках, чтобы при нажатии текст в кнопке смещался вниз (типа эффект нажатия). Это я пытаюсь сделать изменением padding`a в псевдоклассе :active. Вот пример кода

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
#buttons {
font: 12px/1.4 Verdana;
padding: 20px;
}
#buttons input[type="button"] {
border: 1px solid green;
padding: 5px;
}
#buttons input[type="button"]:active {
padding: 7px 5px 3px;
}
</style>
</head>
<body>
<div id="buttons">
<input type="button" value="Кнопка 1">
<input type="button" value="Кнопка 2">
<input type="button" value="Кнопка 3">
</div>
</body>
</html>

Здесь при нажатии на происходит увеличение отступа сверху на 2 пикселя и уменьшение снизу на 2 пикселя. С одной кнопкой нормально, но с несколькими кнопками соседние кнопки начинают "прыгать". Можете посмотреть на примере выше. Как сделать, чтобы соседние кнопки "не прыгали"?

Спасибо :)

Edited by sergiyko
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

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