dtiu94034 2018-02-08 07:20 采纳率: 0%
浏览 192

bootstrap select close按钮大小很大

I need to solve the bootstrap select search and close button in view.I have uploaded image in below link

bootstrap select dropdown image

javascript

$('#class_list_for_fee_report').multiselect({

        enableClickableOptGroups: true,
        enableCollapsibleOptGroups: true,
        includeSelectAllOption: true,
        enableCaseInsensitiveFiltering: true,
        maxHeight: 350,

    });

html

<select class ="col-lg-3 col-xs-3" multiple="multiple" id="class_list_for_fee_report" value="multiselect-all">
   <?php foreach ($batchList as $batch):?>
        <option value="<?php echo $batch->getId(); ?>" selected><?php echo $batch->getBatchName(); ?></option>
 <?php endforeach; ?>
  </select>
  • 写回答

1条回答 默认 最新

  • douduan5086 2018-02-08 07:42
    关注

    Bootstrap includes classes like

    <button class="btn btn-lg">Done</button> // large
    <button class="btn btn-sm">Done</button> // small
    <button class="btn btn-xs">Done</button> // extra-small
    

    These classes manipulate the size of the button, hope it is something you are looking for.

    评论

报告相同问题?