Yaroslav Bondar Asked:2020-05-09 16:35:37 +0000 UTC2020-05-09 16:35:37 +0000 UTC 2020-05-09 16:35:37 +0000 UTC 如何用内框制作这样的背景图片? 772 任务是用内部框架制作这样的背景,链接到布局https://www.figma.com/file/SB9yy4U3zdpzxaxjEpguHw/Sofi-de-Marko?node-id=178%3A2 html 2 个回答 Voted Денис Степанов 2020-05-09T17:08:06Z2020-05-09T17:08:06Z .box { background: rgba(0, 0, 0, 0.5); color: #fff; margin: 50px; position: relative; height: 200px; } .box:before { content: ""; border: 2px solid #fff; position: absolute; top: 10px; bottom: 10px; left: 10px; right: 10px; } <div class="box"></div> Best Answer Вадим 2020-05-09T16:41:56Z2020-05-09T16:41:56Z .wrapper { width: 800px; height: 600px; background-color: #333; padding: 20px; } .item { color: #fff; text-align: center; width: 100%; height: 100%; border: 2px solid #fff; } <div class="wrapper"> <div class="item"> <h1>Welcome</h1> </div> </div>
2 个回答