# Unwanted \`div\` tag should be removed inside \`ol\`

**URL:** https://meta.discourse.org/t/unwanted-div-tag-should-be-removed-inside-ol/52298
**Category:** Development
**Created:** [Novembro 1, 2016, 12:41pm UTC](https://meta.discourse.org/t/unwanted-div-tag-should-be-removed-inside-ol/52298 "2016-11-01T12:41:13Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![vinothkannans](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/vinothkannans/32/86465_2.png) [@vinothkannans](https://meta.discourse.org/u/vinothkannans)
#### Post date: [Novembro 1, 2016, 12:41pm UTC](https://meta.discourse.org/t/unwanted-div-tag-should-be-removed-inside-ol/52298/1 "2016-11-01T12:41:13Z")

</div>

[https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/templates/components/bread-crumbs.hbs#L13](https://github.com/discourse/discourse/blob/master/app/assets/javascripts/discourse/templates/components/bread-crumbs.hbs#L13)

We didn’t needed the line I mentioned above. It is just creating output like

```plaintext
<ol class="category-breadcrumb">
 <li class="no-category has-drop bullet"></li>
 <li class="tag-drop no-category bullet tag_all"></li>
 <div class="clear"></div>
</ol>

```

Totally no need for `div` here inside a `ol` tag, At least it should be

```plaintext
 <li class="clearfix"></li>

```

Can anyone confirm it? So I can make PR.

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [Novembro 1, 2016, 1:02pm UTC](https://meta.discourse.org/t/unwanted-div-tag-should-be-removed-inside-ol/52298/2 "2016-11-01T13:02:53Z")

</div>

Absolutely should be removed, but we got to make sure the `ol` does a proper clearfix.
