# Set CSS class on power-select

**URL:** https://discuss.emberjs.com/t/set-css-class-on-power-select/11186
**Category:** Uncategorized
**Created:** [July 18, 2016, 9:01am UTC](https://discuss.emberjs.com/t/set-css-class-on-power-select/11186 "2016-07-18T09:01:58Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![niconel](https://avatars.discourse-cdn.com/v4/letter/n/e480ec/32.png) [@niconel](https://discuss.emberjs.com/u/niconel)
#### Post date: [July 18, 2016, 9:01am UTC](https://discuss.emberjs.com/t/set-css-class-on-power-select/11186/1 "2016-07-18T09:01:58Z")

</div>

I’m not sure if I’m missing something because in my earlier versions of this project (first with ember) this worked.

I need to set the CSS class of my ember-power-select addon

The “class” values seem to get ignored in this example

```
            {{#power-select
                class="form-control select2"
                selected=model.currency
                options=currencies
                onchange=(action (mut model.currency)) as |currency|}}
                {{currency.name}}
            {{/power-select}}

```

---

<div class="post-metadata">

### Author: ![Spencer\_Price](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/spencer_price/32/14878_2.png) [@Spencer\_Price](https://discuss.emberjs.com/u/Spencer_Price)
#### Post date: [July 18, 2016, 3:38pm UTC](https://discuss.emberjs.com/t/set-css-class-on-power-select/11186/2 "2016-07-18T15:38:37Z")

</div>

You might want to either open an issue, or comment on the issue here: [Missing `class` option {{power-select}} · Issue #541 · cibernox/ember-power-select · GitHub](https://github.com/cibernox/ember-power-select/issues/541)

It looks like they recently made the `power-select` component a [tagless component](https://github.com/cibernox/ember-power-select/blob/master/addon/components/power-select.js#L45)…the `class` attribute would have no affect on it in that case.

And just because the timing here is spot-on: [https://twitter.com/cowboyd/status/755015203847364608](https://twitter.com/cowboyd/status/755015203847364608)
