Click here to Skip to main content
15,890,185 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: defining a "color table" in CSS ? Pin
BillWoodruff7-Jun-10 15:11
professionalBillWoodruff7-Jun-10 15:11 
GeneralRe: defining a "color table" in CSS ? Pin
Not Active7-Jun-10 16:28
mentorNot Active7-Jun-10 16:28 
GeneralRe: defining a "color table" in CSS ? Pin
BillWoodruff7-Jun-10 17:01
professionalBillWoodruff7-Jun-10 17:01 
AnswerRe: defining a "color table" in CSS ? Pin
BillWoodruff7-Jun-10 17:06
professionalBillWoodruff7-Jun-10 17:06 
GeneralRe: defining a "color table" in CSS ? Pin
Dalek Dave7-Jun-10 21:39
professionalDalek Dave7-Jun-10 21:39 
QuestionProblem with html table Pin
Aljaz1115-Jun-10 5:45
Aljaz1115-Jun-10 5:45 
AnswerRe: Problem with html table Pin
Yusuf6-Jun-10 0:49
Yusuf6-Jun-10 0:49 
AnswerRe: Problem with html table Pin
enhzflep6-Jun-10 2:19
enhzflep6-Jun-10 2:19 
Perhaps something like this?
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
td{
	text-align:center;
	color: red;
	font-weight: bold;
	font-style: italic;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #EEE;
	border-top: 1px solid darkgray;
	border-left: 1px solid darkgray;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
	width: 32px;
}
td input{
	width: 100%;
	background-color: #eee;
	border: none;
}
table{
	border: 2px solid black;
}
</style>
</head>

<body>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><input type="text"/></td>
    <td>1</td>
    <td>3</td>
  </tr>
  <tr>
    <td>6</td>
    <td><input type="text"/></td>
    <td>4</td>
  </tr>
  <tr>
    <td>2</td>
    <td>9</td>
    <td>5</td>
  </tr>
</table>
</body>
</html>

QuestionLogin form not working Pin
Gjm4-Jun-10 21:33
Gjm4-Jun-10 21:33 
AnswerRe: Login form not working Pin
Yusuf6-Jun-10 0:54
Yusuf6-Jun-10 0:54 
QuestionCrystal Report in IE8 Pin
PunkIsNotDead4-Jun-10 8:13
PunkIsNotDead4-Jun-10 8:13 
QuestionHow to connect to Ms Access Database? Pin
mdrizwan_12-Jun-10 1:33
mdrizwan_12-Jun-10 1:33 
AnswerRe: How to connect to Ms Access Database? Pin
walterhevedeich2-Jun-10 1:55
professionalwalterhevedeich2-Jun-10 1:55 
GeneralRe: How to connect to Ms Access Database? Pin
mdrizwan_12-Jun-10 2:20
mdrizwan_12-Jun-10 2:20 
GeneralRe: How to connect to Ms Access Database? Pin
walterhevedeich2-Jun-10 15:30
professionalwalterhevedeich2-Jun-10 15:30 
QuestionConvert pull method report to push [modified] Pin
VB.Net Developer1-Jun-10 2:59
VB.Net Developer1-Jun-10 2:59 
AnswerRe: Convert pull method report to push Pin
Not Active1-Jun-10 3:05
mentorNot Active1-Jun-10 3:05 
GeneralRe: Convert pull method report to push Pin
VB.Net Developer1-Jun-10 3:07
VB.Net Developer1-Jun-10 3:07 
GeneralRe: Convert pull method report to push Pin
Not Active1-Jun-10 3:15
mentorNot Active1-Jun-10 3:15 
QuestionRDLC culture problem Pin
jeffrey kalampukattussery31-May-10 23:26
jeffrey kalampukattussery31-May-10 23:26 
QuestionDatabase logon error for crystal report... Pin
VB.Net Developer31-May-10 20:29
VB.Net Developer31-May-10 20:29 
AnswerRe: Database logon error for crystal report... Pin
Peace ON31-May-10 21:44
Peace ON31-May-10 21:44 
GeneralRe: Database logon error for crystal report... Pin
VB.Net Developer31-May-10 22:03
VB.Net Developer31-May-10 22:03 
QuestionAnybody know how to make a read-only Iframe? Pin
Darrell Long30-May-10 6:49
Darrell Long30-May-10 6:49 
AnswerRe: Anybody know how to make a read-only Iframe? Pin
Peace ON31-May-10 1:07
Peace ON31-May-10 1:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.