We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<button class="bubble-tag"> <span> 透明气泡框(带上箭头)</span> </button>
.bubble-tag { position: relative; display: flex; justify-content: center; height: 40px; line-height: 40px; background: #ffffff; border: 1px solid #aaaaaa; text-align: center; font-size: 24px; color: #999; border-radius: 18px; margin: 0px auto 15px; padding: 0 20px; span { display: inline-block; height: 98%; background: #fff; z-index: 1; } // 有色的等腰三角形 &:before { content: ''; width: 0; height: 0; border-style: solid; border-width: 0 22px 20px 22px; border-color: transparent transparent #ccc transparent; position: absolute; top: -18px; right: 50%; transform: translateX(50%); } // 白色的等腰三角形(比上面的稍小一点点) &::after { content: ''; width: 0; height: 0; border-style: solid; border-width: 0 20px 18px 20px; border-color: transparent transparent #ffffff transparent; position: absolute; top: -17px; right: 50%; transform: translateX(50%); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
参考
The text was updated successfully, but these errors were encountered: