Misc. Fiddles for Coding for Designers on Coursera

by Alex Cowan

HTML

<div id='divvied'>
<p>hello</p>
</div>

<div class='comment' id='ex-comment'>
<p>a complete and total div</p>
</div>

<button id='profile-submitter' class='form-submit'>
submit
</button>

CSS

#divvied {
  border-color: red;
}

.comment {
  border-style: solid;
  border-color: blue;
}

#ex-comment {
  border-color: green;
}

button {
  color: white;
  background-color: red;
}

.form-submit {
  background-color: black;
}