html - bootstrap 3.2.0 glyphicons not showing -
i'm trying show glyphicons within textbox.
this markup have:
<div class="form-group" style="width: 100%;" id="divfirstname" runat="server"> <input type="text" placeholder="first name" runat="server" id="txtfirstname" value="" aria-describedby="inputsuccess2status" class="form-control" maxlength="30" /> <span class="glyphicon glyphicon-ok form-control-feedback" aria-hidden="true"></span> <span id="inputsuccess2status" class="sr-only">(success)</span> </div>
and result i'm getting:
any idea doing wrong? thanks, laziale
you forgot include latest bootstrap css styles.
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
also make sure not overriding font-family
property of icon span
somewhere in css.
Comments
Post a Comment