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">
img {
border: 1px solid transparent;
}
a:hover img#IDname {
border-color: #f00;
}
</style>
<a href="messebilder/big01.jpg" target="_blank"><img id="IDname" src="messebilder/big01small.jpg" width="140" height="100"></a>
michaelsinterface hat gesagt.:HTML:<style type="text/css"> img { border: 1px solid transparent; } a:hover img#IDname { border-color: #f00; } </style> <a href="messebilder/big01.jpg" target="_blank"><img id="IDname" src="messebilder/big01small.jpg" width="140" height="100"></a>
<style type="text/css">
img {
border: none;
}
img#IDname {
border: 1px solid transparent;
}
a:hover img#IDname {
border: 1px solid #f00;
}
</style>
michaelsinterface hat gesagt.:Nächster Versuch:
HTML:<style type="text/css"> img { border: none; } img#IDname { border: 1px solid transparent; } a:hover img#IDname { border: 1px solid #f00; } </style>
<a href="..">
<img style="margin: 1px"
onmouseover="style.margin='0'; style.border='1px solid #f00'"
onmouseout="style.margin='1px'; style.border='none'" src="...">
</img>
</a>