Interviewer And Interviewee Guide

ColdFusion Interview Question:

How would you declare an inline css to format the table with a background color of yellow and give the table cell a right margin of 10 pixels?

Submitted by: Administrator
<style>
table {
background-color: yellow;
}
td {
margin: 0 10px 0 0;
}
</style>

<table>
<tr>
<td>Hello world</td>
</tr>
</table>
Submitted by: Administrator

Read Online ColdFusion Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.