I am designing a Q&A page using basic HTML.
This is how my page looks like. JSFIDDLE
I need to add 'A' to the answer of every question. Some answers contains multiple paragraph, so 'A' has to be added to the first paragraph of the answer & it should be aligned same as that of 'Q'.
An example is here: Link
HTML
<h4>Frequently Asked Questions </h4>
<div >
<ul>
<li style="color: blue">
Question heading 1
<p style="color: #000000">
answer para 1
</p>
<p style="color: #000000">
answer para 2
</p>
</li>
<li style="color: blue">
Question heading 2
<p style="color: #000000">
answer para 1
</p>
</li>
<li style="color: blue">
Question heading 3
<p style="color: #000000">
answer para 1
</p>
</li>
<li style="color: blue">
Question heading 4
<p style="color: #000000">
answer para 1
</p>
</li>
</ul>
</div>
Style
<style type="text/css">
ol {
margin-left: 0;
padding-left: 0;
}
li {
display: block;
margin-bottom: .5em;
margin-left: 0em;
}
li:before {
display: inline-block;
content: "Q:";
width: 2em;
margin-left: -2em;
}
</style>