Skip to content

Instantly share code, notes, and snippets.

@shoya140
Created March 7, 2014 13:47
Show Gist options
  • Select an option

  • Save shoya140/9411774 to your computer and use it in GitHub Desktop.

Select an option

Save shoya140/9411774 to your computer and use it in GitHub Desktop.
paddingとbox-shadowで写真にちょっとしたフレームを付ける
.image-on-frame{
position: relative;
display: block;
max-width: 90%;
padding: 5px;
margin: 10px auto 10px auto;
border: 1px solid #ebebeb;
box-shadow: 0 0 5px #ebebeb;
-webkit-box-shadow: 0 0 5px #ebebeb;
-moz-box-shadow: 0 0 5px #ebebeb;
-o-box-shadow: 0 0 5px #ebebeb;
-ms-box-shadow: 0 0 5px #ebebeb;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment