This is kind of an odd thing to post, here, but I can never find decent CSS for a blockquote….so here’s a snippet (with some extra stuff that I failed to remove):


#c {width: 1100px; padding-left: 35px; padding-top: 35px; font-family: arial; font-size: 16px;
}
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
h1 {font-family: arial; font-size: 34px;}
h2 {font-family: arial; font-size: 26px;}
h3 {font-family: arial; font-size: 22px;}

Good pre tag

This code creates a shaded box with a menu bar of sorts at the bottom…..

#c {font-family: arial; font-size: 18px; padding-left: 45px; padding-top: 45px; width: 1100px;
}
h1 {font-size: 26px; color: blue;
}
h2 {font-size: 22px;
}
pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

By admin