Can I use custom HTML when targeting an inline list?

Is it possible to have custom HTML setup to target items in the inline list? I know you can target the background color or the text color, but is it possible for me to create more advanced HTML elements like tables or divs in each list item and be able to control certain aspects of it (such as color) like I can for text and background color. Here’s an example…

Thanks in advance!

<div style='background-color: #23a3aa; color: white; padding: 15px; border-radius: 18px; margin-left: -8px; margin-right: -8px;'>
<table>
<tr>
<td style='font-size: 22px;'>
Big Text!
</td>
</tr>
<tr>
<td style='font-size: 15px;'>
Smaller Text and a Dot!    
</td>
<td>
<div style='background-color: white; border-radius: 5px; height: 10px; width: 10px;'>
</td>
</tr>
</table>
</div>
</div>

possible… but hard