SalveeeQualcuno sa se è possibile dare un effetto linea tratteggiata alla cella di una tabella che imposto come <div> ?
esempio:
normale linea <div> _______________________________
è possibil averla così? ----------------------------
ciao ciao![]()
SalveeeQualcuno sa se è possibile dare un effetto linea tratteggiata alla cella di una tabella che imposto come <div> ?
esempio:
normale linea <div> _______________________________
è possibil averla così? ----------------------------
ciao ciao![]()
mi sembra che .....devi impostare il border-style: dashed
UNA COSA DEL GENERE
<table style="border-style: dashed" border=1>
<tr>
<TD>
CIAO CIAO
</TD>
</tr>
</table>
Z@rigo
<DIV style="border-style: dashed" BORDER=1>
CIAOOOOOO
</DIV>
QUESTA FUNZIA.... PERò FA I TRATTINI LEGGERMENTE ENORMI... MI SA CHE DEVI GESTIRE LA GRANDEZZA DEL BORDO; SEMPRE CON GLI STYLE
Z@rigo
scritto coerentemente
codice:style="border: 1px dashed #ff0000;"
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
Mi sembra che dobrebbe essere invertito l'ordina dashed (dotted/solid etc) con lo spessore es:Originariamente inviato da Francis87
scritto coerentemente
codice:style="border: 1px dashed #ff0000;"
codice:style="border: dotted 1px rgb(127,127,255);"
anke se potrebbe esser cmq letto, l'ordine giusto è quello ke ho scritto io.
da http://www.w3.org/TR/REC-CSS2/box.ht...der-properties'border'
Value:
[ <'border-width'> || <'border-style'> || <color> ] | inherit
Initial:
see individual properties
Applies to:
all elements
Inherited:
no
Percentages:
N/A
Media:
visual
Heaven's closed. Hell sold out.
Linux 2.6.26-2-amd64
Debian squeeze
uhm...provati, anche se questi qua li conoscevo anch'io, ma non alludevo al bordo della tabella tratteggiato, ma alla linea divNon so se è possibile farlo, vi posto un esempio:
la linea nera la vorrei tratteggiata, non continua, è possibile? Se si mi mettete il codice nel mio esempio? Grazie 1000codice:<table width="75%" border="0"> <tr> <td>testo</td> </tr> <tr> <td bgcolor="#000000"> <div></div></td> </tr> <tr> <td>testo</td> </tr> </table>![]()
<table width="75%" border="0">
<tr>
<td style="border-bottom: 1px dashed black;">testo</td>
</tr>
<tr>
<td>testo</td>
</tr>
</table>
ciao!
Perfetto! GrazieeeOriginariamente inviato da sms
<table width="75%" border="0">
<tr>
<td style="border-bottom: 1px dashed black;">testo</td>
</tr>
<tr>
<td>testo</td>
</tr>
</table>
ciao!![]()