我试图在徽标上放置徽章。此图标是一个不相对定位的div。它的宽度和高度我都不知道。我想在左上角或右上角或左下角或右下角制作一个pseduo元素。我怎么能这样做呢?到目前为止,我还是这样:
#aus-hello-button {
list-style-image: url("chrome://aus-hello/skin/icon16.png");
}
#aus-hello-button:before {
background-color: red;
content: 'rawr';
top: 0;
left: 0;
position: absolute;
}
这会将pseduo-element定位在容器的左侧(这是最近的父级位置:relative)
THX