Hi what is the meaning of this line in css
.btn-group > .btn-mini
That is a child selector, it will only select the next element it finds with a class of .btn-mini.
.btn-mini
http://www.w3.org/TR/CSS2/selector.html#child-selectors
thanks man
No, it doesn't.
It means it will target any element with the .btn-mini class which is directly descendant of any element with the .btn-group class.
.btn-group
This means the p tag will match but not the span since it's not a direct child of .btn-group.
div class="btn-group" p class="btn-mini" span class="btn-mini" /span /p /div
You can learn a little bit more about it here too: http://css-tricks.com/child-and-sibling-selectors/
Thank you all
Hi what is the meaning of this line in css
.btn-group > .btn-mini
That is a child selector, it will only select the next element it finds with a class of
.btn-mini.http://www.w3.org/TR/CSS2/selector.html#child-selectors
thanks man
No, it doesn't.
It means it will target any element with the
.btn-miniclass which is directly descendant of any element with the.btn-groupclass.This means the p tag will match but not the span since it's not a direct child of
.btn-group.You can learn a little bit more about it here too: http://css-tricks.com/child-and-sibling-selectors/
Thank you all