• 21-03-2009, 23:04:07
    #1
    arkadaşlar aşağıdaki kodların çıktısını css ile nasıl sağlarım..


    <table bgcolor="#FCBADE" border="1" bordercolor="#FFFFFF">
    <tr>
    <td nowrap="nowrap" valign="center" align="left" width="200" height="40">
    <div align="center">
    <font color="9D1961">İçerik</font> 
    </div>
    </td>
    </tr>
    </table>
  • 22-03-2009, 00:14:34
    #2
    Buyrun. test

    <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <html>
    <head>
    <title>oyunarti.com Div çerçeveli kutu</title>
    
    <style type="text/css">
    		.diskutu{
    			width:202px;
    			margin:2px;
    			padding:2px;
    			background:#FCBADE;
    		}
    		
    		.ickutu{
    			background:#FCBADE;
    			border:1px solid #FFFFFF;
    			text-align: center;
    			color: #9D1961;
    			height:40px;
    			width: 200px;
    		}
    </style>
    
    </head>
    <body>
    <div class="diskutu">
    <div class="ickutu">İçerik Buraya</div>
    </div>
    </body>
    </html>
  • 22-03-2009, 01:39:45
    #3
    yardımın için çok teşekkür ederim, iyi çalışmalar..