こんにちは私はサークルを作成しました。私は円の後にテキストを移動することを望む。htmlとcssを使ってサークルの後にテキストを移動する方法
マイplunker:https://plnkr.co/edit/48EpeXDtj9sgAp2hiyF3?p=preview
スニペット:
<!DOCTYPE html>
<html>
<style>
#circle {
position: relative;
background-color: #09f;
width: 30px;
height: 30px;
border-radius: 200px;
}
#text {
position: absolute;
top: 20%;
left: 60%;
color: #fff;
}
</style>
<body>
<div id="circle"><div id="text">T</div></div>ext
</body>
</html>
おかげ
Vinoth
?または、後に? – DMrFrost
@DMrFrostは右 – Vinoth