<div class="form-inline">
<div class="form-group ">
<label for="txtTitle" class="control-label">
<p class="text-info">Page Title</p>
</label>
<asp:textbox id="txtTitle" tabindex="14" runat="server" MaxLength="60" TextMode="SingleLine" CssClass="form-control input-sm"></asp:textbox>
</div>
</div>
This snippet of HTML code is intended to create an inline form, but the styles for the form-inline
class are not being applied, even though Bootstrap is included.
https://i.sstatic.net/nsXCi.jpg
I have attempted to use both my local Bootstrap file and the Bootstrap file from a CDN (https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css), but the styles are not rendering correctly.
What could be causing this issue?