无法删除DIV保证金

时间:2016-09-24 14:51:25

标签: html css

我一直在玩一个分频器,它让我疯狂。

    <script type="text/javascript">


function ShowTimes() {
  var now = new Date();
  var hrs = 23-now.getHours();
  var mins = 59-now.getMinutes();
  var secs = 59-now.getSeconds();

      str = ('0'  + hrs).slice(-2)+':'+('0' + mins).slice(-2)+':'+('0' + secs).slice(-2);
  document.getElementById('countdownToMidnight').innerHTML = str;
}
var _cntDown;
function StopTimes() {
    clearInterval(_cntDown);
}

</script>

当我输入以下代码到正文

时输出代码
<div id="countdownToMidnight"></div>

问题是它在右侧留下了无限的边缘(与身体一样宽)

我尝试过以下事情

width:100px;
margin: 0px;
float: left;

左边浮动是唯一一个实际上允许我将这个脚本与我的文本保持在同一行上的代码,但浮动 - 好吧它浮动到左边并使我的着陆器弄得一团糟。

我希望它在En Continu旁边和正文

之前
<div class="conteneur_en_continu"><a href="#replaceme" class="tetiere">En Continu</a>


   <div id="countdownToMidnight" style="float:left;"></div>Until new points

</div>

怎么办?

0 个答案:

没有答案