Thanks ,
Having trouble centering contents of td .
Here is the code:
Thanks for your Help...
Having trouble centering contents of td .
Here is the code:
Code:
<!DOCTYPE html>
<html>
<head>
<title>Table Example</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid black;
padding: 10px;
}
.left-cell {
width: 25%;
text-align: center; /* center the contents */
}
.right-cell {
width: 75%;
}
.outer-box {
border: 2px solid black; width:60px; height:30px; text-align:center;
background-color:#EFEFEF; padding: 10px;
}
.inner-box {
border: 2px solid black; width:36px; height:8px;
background-color:#FFFFFF; padding: 10px;
}
</style>
</head>
<body>
<table>
<tr>
<td class="left-cell">
<div class="outer-box">
<div class="inner-box">
</div>
</div>
</td>
<td class="right-cell">
Click This Button To [Change the Background-Color]
</td>
</tr>
</table>
</body>
</html>