Created
June 24, 2018 13:49
-
-
Save arowM/c2a8458eb5045dd3c6fbb11f4594e7a9 to your computer and use it in GitHub Desktop.
simple message box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
.box { | |
position: relative; | |
border-radius: 0.4em; | |
border: solid 2px #333; | |
margin-top: 1em; | |
} | |
.box_title { | |
position: absolute; | |
top: -0.5em; | |
left: 50%; | |
padding: 0 1em; | |
background-color: #fff; | |
} | |
.box_content { | |
min-height: 10em; | |
padding: 1em; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="box"> | |
<div class="box_title"> | |
title | |
</div> | |
<div class="box_content"> | |
content | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment