<!-- A property item --><dl class="container"><!-- Property name --><dt>...</dt><!-- Property value --><dd>...</dd></dl>
.container {/* Content is center horizontally */align-items: center;display: flex;/*The property name will stick to the left, and the valuewill stick to the right*/justify-content: space-between;border-bottom: 1px solid rgba(0, 0, 0, 0.3);/* Spacing */margin: 0px;padding: 8px 0px;}