Skip to content

Instantly share code, notes, and snippets.

@HenriqueLimas
Created June 9, 2015 14:47
Show Gist options
  • Save HenriqueLimas/32f4cd032e257f65cac7 to your computer and use it in GitHub Desktop.
Save HenriqueLimas/32f4cd032e257f65cac7 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/getide
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<style id="jsbin-css">
* {
margin: 20px;
font-family: Arial, Helvetica
}
body {
background-color: white;
}
.medium-solid-blue {
border-width: medium;
border-style: solid;
border-color: #00f;
}
.px-dashed-red {
border-width: 6px;
border-style: dashed;
border-color: #f00;
}
.dashed {
border-style: dashed;
}
.dotted {
border-style: dotted;
}
.solid {
border-style: solid;
}
.ridge {
border-style: ridge;
}
.inset {
border-style: inset;
}
.outset {
border-style: outset;
}
.double {
border-style: double;
}
.groove {
border-style: groove;
}
.bottom-width {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 10px;
border-left-width: 0px;
border-bottom-style: solid;
}
</style>
</head>
<body>
<h1>Border example</h1>
<div class="medium-solid-blue">Borda media continua azul</div>
<div class="px-dashed-red">borda 6px tracejada vermelha</div>
<div class="dashed">Border dashed</div>
<div class="dotted">Border dotted</div>
<div class="solid">Border solid</div>
<div class="groove">Groove border</div>
<div class="inset">Inset border</div>
<div class="outset">Outset border</div>
<div class="ridge">Border ridge</div>
<div class="double">Double border</div>
<div class="bottom-width">Border with a bottom width</div>
<script id="jsbin-source-css" type="text/css">* {
margin: 20px;
font-family: Arial, Helvetica
}
body {
background-color: white;
}
.medium-solid-blue {
border-width: medium;
border-style: solid;
border-color: #00f;
}
.px-dashed-red {
border-width: 6px;
border-style: dashed;
border-color: #f00;
}
.dashed {
border-style: dashed;
}
.dotted {
border-style: dotted;
}
.solid {
border-style: solid;
}
.ridge {
border-style: ridge;
}
.inset {
border-style: inset;
}
.outset {
border-style: outset;
}
.double {
border-style: double;
}
.groove {
border-style: groove;
}
.bottom-width {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 10px;
border-left-width: 0px;
border-bottom-style: solid;
}</script>
</body>
</html>
* {
margin: 20px;
font-family: Arial, Helvetica
}
body {
background-color: white;
}
.medium-solid-blue {
border-width: medium;
border-style: solid;
border-color: #00f;
}
.px-dashed-red {
border-width: 6px;
border-style: dashed;
border-color: #f00;
}
.dashed {
border-style: dashed;
}
.dotted {
border-style: dotted;
}
.solid {
border-style: solid;
}
.ridge {
border-style: ridge;
}
.inset {
border-style: inset;
}
.outset {
border-style: outset;
}
.double {
border-style: double;
}
.groove {
border-style: groove;
}
.bottom-width {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 10px;
border-left-width: 0px;
border-bottom-style: solid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment