Jump to content
  • 0

Border для Img


termoplus
 Share

Question

Нужно сделать типа галереи и чтобы при наведении курсора появлялась рамка в 3 пикселя. Можно задать обычной картинке 3 пик. цвета фона а при наведении (:hover) просто поменять цвет, но нужно чтобы у обычной картинки была рамка в 1 пик. Простыми словами нужно чтобы при наведении курсора рамка в 1 пик. заменялась на 3 пик. без смещения остальных картинок.

спасибо

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Или ещё как вариант, можно задавать и убирать padding: http://psywalker.ru/img-padding/img.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Table - Li</title>
<style type="text/css">
*{ margin: 0; padding: 0;}
img { border: 1px solid #f00; padding: 2px; float: left;}
img:hover { border: 3px solid #f00; padding:0;}
</style>
</head>
<body>
<img src="4649.jpg" alt="" />
<img src="43.jpg" alt="" />
<img src="30.jpg" alt="" />
<img src="179.jpg" alt="" />
<img src="191.jpg" alt="" />
</body>
</html>

Link to comment
Share on other sites

  • 0

Так паддинг "оттолкнет" бордер. Разве это то, что нужно?

Разница только в том, где будет находиться однопиксельная граница, тут уже зависит от того, что нужно получить.

Link to comment
Share on other sites

  • 0
нужно чтобы при наведении курсора рамка в 1 пик. заменялась на 3 пик. без смещения остальных картинок.

.className a img { border: 1px solid #000; margin: 2px; }
.className a:hover img { border: 3px solid #000; margin: 0px; }

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