I need to replace a <ol>
element with a <ul>
element by media query, so when the user is in desktop mode the result should be like this:
<ol>
<li></li>
<li></li>
<li></li>
</ol>
but in mobile it should be:
<ul>
<li></li>
<li></li>
<li></li>
</ul>
It is possible to do this by media query or jQuery?
` **or** `
` with a media query will achieve that, style-wise -> https://jsfiddle.net/twc3sey2/
– blex Jan 12 '21 at 21:37) at the same time in mobile the- tags, which has links inside does not work with
– Dev Jan 12 '21 at 21:39tags, only with
ones, so thats why i need to change the tags for mobile devices