I am not adding any blank spaces explicitly in code. But while running it in browser some blank spaces are adding automatically. I don't know why it happening.
Below is the code,
<div class="col-md-6" style="padding-top:3%" > <div class="col-md-3 col-sm-6"> <label for="company-name" class="control-label">Forecast Time (Hrs):</label> </div> <div class="form-group col-md-4"> <input type="numbersOnly" class="form-control" value="<?php echo htmlspecialchars($forecasttime); ?>" id="txt_editorderforecasttime" name="orderforecasttime" /> </div> </div> But when I run it in browser(am using safari, even in chrome am getting the same while inspecting,
<div class="col-md-6" style="padding-top:3%" > <div class="col-md-3 col-sm-6"> " " <label for="company-name" class="control-label">Forecast Time (Hrs):</label> </div> <div class="form-group col-md-4"> <input type="numbersOnly" class="form-control" value="<?php echo htmlspecialchars($forecasttime); ?>" id="txt_editorderforecasttime" name="orderforecasttime" /> </div> </div> Please let me know the reason why it is happening .
Thanks in advance