Ciao a tutti, stavo facendo esperimenti con i css sul testo.
Volevo sapere se era possibile ottenere un testo fisso, non ridimensionabile con i comandi browser dall'utente.
Con questo codice risolvo il problema solo su explorer...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="it">
<head>
<title>Lezione 6 - Titolo e Testo</title>
<style type="text/css">
<!--
.titolo {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14pt;
font-weight: bold;
color: #FF9900;
}
.testo {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11pt;
font-weight: normal;
color: #333333;
}
a:link {
font-size: 12pt;
font-style:italic;
color:#00FF00;
text-decoration: underline;
}
a:visited {
font-size: 12pt;
color: #00FF00;
text-decoration: underline;
}
a:hover {
font-size: 12pt;
color:#0000FF;
text-decoration: none;
}
a:active {
font-size: 12pt;
color: #00FF00;
text-decoration: underline;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body>
<p class="titolo">StileTitolo</p>
<p class="testo">StileTesto</p>
StileLink</p>
</body>
</html>
Ciao
Alessandro

Rispondi quotando
