<html>
<head>
<title>Title</title>
<style type="text/css">
#container {
position: relative;
}
#line {
border-bottom: thin solid gray;
display:inline-block;
position:relative;
bottom: 1ex;
width:90%;
}
</style>
</head>
<body>
<div id="container">
<span id="title">Title</span>
<span id="line"></span>
</div>
</body>
</html>
如何使跨度“线”的宽度等于“容器”的宽度减去跨度“标题”的宽度?
编辑
“标题”的宽度由“标题”内的文字决定。