I am looking to create a list with lower-roman indexes that are enclosed in parentheses (ii), where the content of each item is indented. Here is an example:
(i) lorem ipsum dolor sit amet, consectetur adipiscing elit.
Integer ut metus nec urna efficitur dapibus vitae quis justo.
(ii) Maecenas ac odio eu eros eleifend congue eget sed neque.
Fusce laoreet mauris at cursus congue.
Here is my attempt using CSS:
<ol class="roman">
<li>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</li>
<li>
Maecenas ac odio eu eros eleifend congue.
</li>
</ol>
However, the indentation is not being applied to the entire paragraph. How can I achieve the desired formatting?