Given the following BEM tree structure, where five nested levels exist:
collection-main__features-top__story__byline__author
according to BEM's naming convention, where an element is part of a block and has no meaning outside of the block it belongs to, what is the proper way to name the author
class?
Since an author
is semantically tied to the byline
and the story
context, but meaningless under the features-top
and collection-main
blocks, what is the best BEM name?
collection-main__author
features-top__author
story__author (best?)
story__byline__author
byline__author
What happens if a new features
block gets introduced?
collection-main__features-top__story__byline__author (target)
collection-main__features-bottom__story__byline__author
features-top__story__author
story--features-top__author (best?)
Finally, what happens if another collection
block gets added and we want to style the second author element in the list?
collection-main__features-top__story__byline__author
collection-main__features-bottom__story__byline__author (target)
collection-sub__features-top__story__byline__author
collection-sub__features-bottom__story__byline__author
Would we do something like this?
story--collection-main--features-bottom__author
There must be a better option.