“CSS Inline Ever” Kod odpowiedzi

Jak napisać A: Wpadaj w CSS wbudowanym?

<a href="abc.html"
   onMouseOver="this.style.color='#0F0'"
   onMouseOut="this.style.color='#00F'" >Text</a>
 Run code snippet
Ali Raza Arain

CSS Hover

.a:hover{background-color: black;}
Happy Hippopotamus

Stylowy wbudowany CSS

<a href="#your-url-path"
onMouseOver="this.style.cursor = 'pointer'"
onMouseOut="this.style.cursor = 'none'" >Click here to Subscribe</a>
Grieving Gerenuk

Jak zastosować unośnik przez wbudowane CSS

document.getElementById("mydiv").onmouseover= function(e){this.className += ' my-special-class'; };
document.getElementById("mydiv").onmouseleave= function(e){this.className = this.className.replace('my-special-class',''); };
Dev

CSS Inline Ever

.hover-item {
	background-color: #FFF;
}

.hover-item:hover {
	background-color: inherit;
}
<a style="background-color: red;">
	<div class="hover-item">
		Content
	</div>
</a
Wrong Wolverine

Wpadkowe CSS

<script type="text/javascript">
  var link = document.createElement("link");
  link.setAttribute("rel","stylesheet");
  link.setAttribute("href","http://wherever.com/yourstylesheet.css");
  var head = document.getElementsByTagName("head")[0];
  head.appendChild(link);
</script>
Condemned Caracal

Odpowiedzi podobne do “CSS Inline Ever”

Pytania podobne do “CSS Inline Ever”

Więcej pokrewnych odpowiedzi na “CSS Inline Ever” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu