Originalmente inviato da
karl94
Comunque quell'effetto lo puoi ottenere in altri modi, ma ogni browser ha il suo. Su Gecko dovresti usare i filtri SVG, mentre con WebKit c'è una proprietà CSS (non standard) apposita.
Codice:
background: #866400;
background: -moz-linear-gradient(top, #866400 0%, #ff4e28 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#866400), color-stop(100%,#ff4e28));
background: -webkit-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: -o-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: -ms-linear-gradient(top, #866400 0%,#ff4e28 100%);
background: linear-gradient(to bottom, #866400 0%,#ff4e28 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#866400', endColorstr='#ff4e28',GradientType=0 );
Intendi così? Questo esce sotto al testo, non sopra come desiderato :/
Altro problema (non apro un secondo topic), con un p.
Nel foglio di stile sta assegnato solo ciò al p:
Codice:
p{color:#000000;}
Perchè intorno al p esce anche il padding?