Some Text effect in CSS3:-
Here the interviewer is expecting you to answer one of two text effects by CSS.Below are two effects which are worth noting.
Shadow text effect
.specialtext
{
text-shadow: 5px 5px 5px #FF0000;
}
Word wrap effect
<style>
.breakword
{
word-wrap:break-word;
}
</style>