I'm attempting to arrange two unordered lists in columns next to each other.
My goal is to have the list on the left display as initial;
, while the list on the right displays as inline;
.
You can check out my example on this fiddle.
ul > li {
display: initial;
}
ul > li .hashtag {
display: inline-block;
margin: 5px 5px;
}
I've experimented with adding the styles in the stylesheet, head section, and directly in the HTML. But I'm still unable to achieve the desired result.