I think very often tabs are implemented as <ul>
and a series of <li>
inside. Is there advantage of that over
just using <div>
with a few <div>
s inside?
Usually with <ul>
as tabs, the padding-left of it needs to be reset to 0, and list-style
needs to be set to none
, while <div>
doesn't have this issue.