Jump to content
  • 0

":hover" в строке, а не в файле и не в стилях


textinmail
 Share

Question

=) всё банально

есть к примеру - <p class="qqq"></p>

есть классы:

.qqq p {

тут всякие параметры...

}

.qqq p:hover {

тут всякие другие параметры

}

как реализовать с файлами цсс всё понятно и с прописанием в <head></head> тоже ясно

<p class="qqq"></p>

но встала задача сделать чтото типа такого:

<p class="qqq" style=":hover параметры хувера"></p>

тоесть хувер будет прописан только тут в строке, а не гделибо типа в отдельном цсс файле и не между хедом

!!! естественно такой вариант не пашет

Вот и хотелось бы узнать как в строке прописать тегу и клас без хувера и с хувером(но вручную) =)

Edited by textinmail
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

По спецификации(http://www.w3.org/TR/2002/WD-css-style-attr-20020515#cascading ) должно быть вот так:

<a href="http://www.w3.org/Style/CSS"
style="{color: blue; background: white} /* a+=0 b+=0 c+=0 */
:visited {color: green} /* a+=0 b+=1 c+=0 */
:hover {background: yellow} /* a+=0 b+=1 c+=0 */
:visited:hover {color: purple} /* a+=0 b+=2 c+=0 */
">
Example of a hyperlink to the CSS home page with special one-off
visited and hover effects.
</a>

Однако не видел чтобы это где-нибудь работало.

Link to comment
Share on other sites

  • 0

;) для пхп циклов

yopopt, вариант не работает, я его давненько нашел

частично вышел из ситуации вот таким способом - http://www.webmascon.com/topics/coding/26a.asp

так как оказалось инлайн стайл не кушает псевдоклассы типа хувер

пока только так =)

Edited by textinmail
Link to comment
Share on other sites

  • 0

Возможно только так

<!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=windows-1251" />
<title>Untitled Document</title>
</head>

<body>

<a href="#" onmouseover="this.style.color='red'" onmouseout="this.style.color=''">ссылка</a>
</body>
</html>

Посетить мою домашнюю страницу

Link to comment
Share on other sites

  • 0
бывают ситуации когда это надо.

Тоже столкнулся с сабжем.

У меня сайт на php, <head> и часть страницы подключается отдельным файлом, поэтому менять <style> не получается (точнее, можно, но сложнее). Загромождать внешний .css тоже неохота, когда нужное действие требуется только один раз только для одной страницы.

Решил проблему так:

PHP-скрипт

$script = "\n<style> ... </style>\n"
include('head.php');
........
include('foot.php');

head.php:

<html>
<head>
<title>...</title><?php echo $script; ?>
</head>
<body>
...

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