html - Bootstrap buttons with glyphicons show different results -
i've written code makes menu. i've used bootstrap manage this. problem show different behaviour on different computers:
this html code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"/> <div class="btn-group" role="group"> <button type="button" class="btn btn-default" id="createstorybox"><span class="glyphicon glyphicon-book" style="display: inline-block"></span><span class="hidden-xs hidden-sm"style="display: inline-block"> {{ _('create story') }}</span></button> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#createeventmodal" style="display: inline-block" ><span class="glyphicon glyphicon-flag"></span><span class="hidden-xs hidden-sm"> {{ _('create event') }}</span></button> </div>
Comments
Post a Comment