格式化div和span元素

时间:2012-12-19 13:57:09

标签: html css

这是我想要格式化的小提琴: jsfiddle

我正在寻找以下内容:

  • logotext div之间的距离。如果我使用margin-top属性相对不起作用。
  • text div下跨越换行符。用<br/>分隔这些跨度可以提供更多的距离。如果我更改line-height property,则会为其他跨度创建问题。我希望我没有为每个line-height指定span

1 个答案:

答案 0 :(得分:2)

margin属性是您的答案。将您的文本放入范围内的段落标记,并自定义其边距

p, span, div[name="logo"] {
    margin: 5px 2px 5px 2px;
}

边距按顺时针方向设置。 margin: 'top' 'right' 'bottom' 'left';