我有一个评论列表,我想border-radius
使用一些 css 代码评论 div 设置最后一个孩子
的评论,
我正在使用这个代码,但它不起作用。
#comments>.comment:last-child, .indented>.comment:last-child{border-bottom-right-radius: 5px;}
它在像这样与 jquery 一起使用时有效
$('#comments>.comment:last, .indented>.comment:last').css('border-bottom-right-radius', '10px');
但我想用css代码解决它。有什么建议吗?
小提琴的简单代码小提琴