akkey247
1/16/2018 - 11:11 AM

【CSS】おしゃれなCSSメモ

box-shadow

/* ほんわり浮き上がった感じ */
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.06);

単語の頭にアイコンを表示(CSSアイコンバージョン)

<p>テキスト</p>
<style>
p {
  position: relative;
  margin-left: 15px;
}
p:before {
    position: absolute;
    top: 50%;
    left: -15px;
    margin-top: -6px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #E9CC94;
}
</style>

単語の頭にアイコンを表示(画像アイコンバージョン)

<p>テキスト</p>
<style>
p {
    position: relative;
    margin-left: 15px;
}
p:before {
    position: absolute;
    top: 50%;
    left: -15px;
    margin-top: -6px;
    content: "";
    width: 12px;
    height: 12px;
    background: url(https://placehold.jp/10x10.png) no-repeat;
    background-size: contain;
}
</style>

【CSS】疑似要素の画像サイズを変更する方法

フッターメニュー簡易版(ボーダー仕切り)

<ul>
  <li>個人情報保護方針</li>
  <li>利用規約</li>
  <li>会社情報</li>
  <li>お問い合わせ</li>
</ul>
<style>
ul {
  display: flex;
  list-style: none;
}
li {
  display: inline-block;
  padding: 0 10px;
  border-left: 1px solid #000;
}
li:last-child {
  border-right: 1px solid #000; 
}
</style>

参考記事

フッターデザイン【レスポンシブサイトのサンプルソース】