Here is a definition list with a specific styling:
dl {
margin: 0;
}
dl.interview dt {
color: #A8A67A;
}
dl.interview dd {
margin-left: 0;
}
.interview dt:before {
content: 'Q. ';
}
.interview dd:before {
content: 'A. ';
}
dt {
margin-top: 1em
}
dd {
font-style: italic;
padding: 0;
}
Is there a way to make each consecutive pair of questions and answers align alternately on the left and right side?