我正在尝试使所有圆圈在页面上对齐,但它们是垂直堆叠的。有什么方法可以删除换行符,或者任何其他允许与我的段落中的 CSS 具有相同 CSS 属性的工具?实现 div 会更容易吗?
<div>
<p id="developer">
<br>
<br>
<br>
<br>
HTML
<br>
CSS
<br>
JavaScript & jQuery
</p>
<p id="designer">
<br>
<br>
<br>
<br>
Photoshop
<br>
Illustrator
<br>
Responsive Design
</p>
<p id="uxdesigner">
<br>
<br>
<br>
<br>
Flowcharts
<br>
Wireframes
<br>
Personas
</p>
</div>
#developer {
background-color: #0071BC;
width: 300px;
height: 300px;
border-radius: 300px;
text-align: center;
}
#designer {
background-color: #0071BC;
width: 300px;
height: 300px;
border-radius: 300px;
text-align: center;
}
#uxdesigner {
background-color: #0071BC;
width: 300px;
height: 300px;
border-radius: 300px;
text-align: center;
}