Jump to content
  • 0

Наследование стилей.


Gatanoa
 Share

Question

:/ Не могу уменьшить размер картинок с помощью CSS. Интересно, почему??? :|

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>EXPERIMENT</title>
<style type="text/css">
#pictures { position: absolute; left: 122px; top: 169px; height: 1px; width: 1px; border; 0px}
</style>
</head>

<body>
<div id="pictures"><img src="pic.gif" alt="">
<img src="pic.gif" alt="">
<img src="pic.gif" alt="">
<img src="pic.gif" alt="">
<img src="pic.gif" alt="">
<img src="pic.gif" alt=""></div>
</body>

</html>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Хмм... Так и вправду работает. Спасибо. :o

Но вот ещ? пример, и тоже не работает. Здесь что не так?

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>EXPERIMENT</title>
<style type="text/css">

.st {
font-family: DilleniaUPC, "Times New Roman", Times, serif;
font-size: 100%;
font-weight: bold;
}

.st {
color: blue;
text-decoration: none;
}
.st:visited {
color: purple;
}
.st:hover {
color: #CF6;
background-color: #642FB4;
}

</style>
</head>

<body>

<p class="st"><a href="http://aport.ru">Апорт</a>

<a href="http://yandex.ru">Яндекс</a>

<a href="http://rambler.ru">Рамблер</a></p>

</body>

</html>

Я думал, что ссылки унаследуют класс.

Link to comment
Share on other sites

  • 0

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>EXPERIMENT</title>
<style type="text/css">

.st {
font-family: DilleniaUPC, "Times New Roman", Times, serif;
font-size: 100%;
font-weight: bold;
}

.st а{
color: blue;
text-decoration: none;
}
.st a:visited{
color: purple;
}
.st a:hover {
color: #CF6;
background-color: #642FB4;
}

</style>
</head>

<body>

<p class="st"><a href="http://aport.ru">Апорт</a>

<a href="http://yandex.ru">Яндекс</a>

<a href="http://rambler.ru">Рамблер</a></p>

</body>

</html>

примерно так .st a:событие {параметры}, т.е применить все к тегу а, который встречается в классе .st

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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