如何将一个类的边界扩展到其他类之上
我希望朋友类周围的边界能够扩展从人名到添加朋友类的整个距离。
HTML
<div class = 'friends'> Persons Name</div>
<div class = 'buttons'> add as friend </div>
CSS
.friends {
border: 1px solid;
display: inline;
}
.buttons {
background-color:blue;
float: right;
width: 50px;
display: inline;
}
我已经添加了一个jsfiddle演示问题。
I would like the border around the friends class to extend the whole distance from the persons name to the add friends class.
HTML
<div class = 'friends'> Persons Name</div>
<div class = 'buttons'> add as friend </div>
CSS
.friends {
border: 1px solid;
display: inline;
}
.buttons {
background-color:blue;
float: right;
width: 50px;
display: inline;
}
I have added a jsfiddle demonstrating the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样做:
HTML
CSS
我认为这就是你想要做的。
Try doing it like this:
HTML
CSS
I think that it what you are trying to do.
如果您可以设置元素的高度,这个解决方案就会浮现在脑海中。
This solution comes to mind, if you can set the height of the elements.