Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I have some text overlaying a border with CSS?

Tags:

html

css

What is the best way to combine a border with some text like so:

 ----------- sometext ------------
|                                 |
|              form               |
|                                 |
 ---------------------------------
like image 333
hirokuchima Avatar asked Sep 05 '25 02:09

hirokuchima


1 Answers

As it's for a form, you should use a fieldset element.

fieldset {
  text-align: center;
}
<form>
  <fieldset>
    <legend>Some text</legend>
    <p>Stuff</p>
  </fieldset>
</form>
like image 150
thirtydot Avatar answered Sep 07 '25 21:09

thirtydot