简体   繁体   中英

How to create a 100% width select with SelectBoxIt.js

I have some trouble creating a 100% width select box with SelectBoxIt.js

Even when setting the CSS width to 100%, the select box will not fill 100% of the container element.

CSS:

.test1, .test2, .test2 .selectboxit, .test2 .selectboxit-options {
  width: 100%;
}

HTML:

<select name="test2" class="test2">
  <option value="SelectBoxIt is:">SelectBoxIt is:</option>
  <option value="a jQuery Plugin">a jQuery Plugin</option>
  <option value="a Select Box Replacement">a Select Box Replacement</option>
  <option value="a Stateful UI Widget">a Stateful UI Widget</option>
</select>

js

$(".mySelect").selectBoxIt({ autoWidth: false });

and then css

.selectboxit-container {
    width: 100%;
}

    .selectboxit-container .selectboxit {
    width: 100%;
}

Greg Franko helped me solve the issue.

You can see the solution in JSBin. http://jsbin.com/udapic/1/edit

Basically, you need to disable autoWidth like so:

$(".test2").selectBoxIt({ autoWidth: false, copyClasses: "container" });

And then set the width to 100% in your CSS:

.test1, .test2, .test2 .selectboxit, .test2 .selectboxit-options { width: 100%; }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM