To create a border for text with HTML and CSS, you can use the CSS border property. Here's an example:

HTML:

<div class="bordered-text">Hello World</div>

CSS:

.bordered-text {
  border: 2px solid black; /* border width, style, and color */
  padding: 10px; /* optional padding around the text */
}

In the above example, a div element with the class "bordered-text" is created. The CSS styling for that class includes a border of 2 pixels width, solid style, and black color. You can adjust these values to customize the appearance of the border. The padding property adds optional space around the text, making it look more visually appealing

i want to create border for text with html and css

原文地址: https://www.cveoy.top/t/topic/inqj 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录