HTML移动到h3内部的最大值

时间:2016-03-15 18:03:33

标签: html css

我有这段代码:

HTML:

<h3 class="section_title">Lorem ipsum <span class="c">Text</span></h3>

CSS:

    .main_description  .section_cost .section_title {
    font-size:      18px;
    border-bottom:  1px solid #ffffff; 
    padding-bottom: 5px;
    margin-right:   60px;
}

我想将跨度内的文本移动到h3下划线的最右侧,即使我将跨度内的文本更改为更长或更短的文本。

Image

2 个答案:

答案 0 :(得分:1)

您可以使用float

 span{float: right}

以下是CSS Layout - float and clear

的内容

答案 1 :(得分:0)

设置right属性:

right: 0;
position: relative;

设置右侧的偏移量。

编辑:

我也忘了设置位置了。