Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ここは初心者なので、これが簡単な答えである場合は申し訳ありません。私は、テキストの最初の段落の後ろに円または半円をよく使用する印刷物の世界から来ました。HTML5 & CSS3 で同じことを行うことは可能ですか?
円を作成してスタイルを設定するコードはありますが、円の上にテキストを表示する方法がわかりません。
border-radius:50%テキストを含む div で使用してみてください。それともそうじゃないの?
border-radius:50%
<body> <div> <p>this is content</p> </div> </body> div {background:red;height:50px;width:50px;border-radius:50%;padding:5%;text-align:center;} p {margin:0;}
http://jsfiddle.net/NAvbX/