Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<style type="text/css">
<!--
li:hover{list-style-type:square}
-->
</style>
Dies trifft aber nur auf die Vorgänger des IE7 zuMoin,
Jo, das geht mit CSS
Code:<style type="text/css"> <!-- li:hover{list-style-type:square} --> </style>
allerdings nicht im IE, da musst du Javascript zur Hilfe nehmen.
Dann probier's nochmal im standardkonformen Modus:Mmmh, ich habs probiert...geht in keinem IE :-(
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="author" content="Maik">
<meta name="date" content="2009-10-12">
<title>tutorials.de</title>
<style type="text/css">
<!--
li:hover { list-style:square; }
-->
</style>
<!-- Für den IE6 -->
<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<ul><li>test</li></ul>
</body>
</html>