<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .header{ width: 300px; height: 100px; } .text_line{ width: 200px; height: 0; border-bottom: 1px solid black; margin-top: 20px; margin-bottom: -15px; } span{ display: block; width: 70px; text-align: center; margin-left: 50px; text-decoration: none;padding: 6px 5px; background: #ffffff; } </style> </head> <body> <div> <div class="header"> <div class="text_line"></div> <span>文字部分</span> </div> </div> </body> </html>