CSS Selecter

view source

JavaScript

$(function(){
  $('#sample li').each(function(i){
    $(this).text(i);
  });
  $('#sample li:nth-child(6)').each(function(){
    $(this).append('jQuerySelecter');
  });
});

CSS

#sample:after{
  content:"";
  display:block;
  clear:both;
}
#sample li{
  width:120px;
  height:120px;
  text-align:center;
  line-height:40px;
  float:left;
  border:1px solid #000000;
}

#sample li[data-attr^="ab"]{
  background-color:#ffaaaa;
}

#sample li[data-attr$="yz"]{
  background-color:#aaffaa;
}

#sample li[data-attr*="lmn"]{
  background-color:#aaaaff;
}

#sample li:nth-child(4){
  background-color:#ffaaff;
}

#sample li:nth-child(5):after{
  content:"after xxx";
}

#sample li:nth-child(6):before{
  content:"before xxx";
}
#sample li:nth-last-child(2){
  background-color:#ffff00;
}

#sample li:last-child{
  background-color:#777777;
}



HTML

ページのソースを表示 : Ctrl+U , DevTools : F12

view-source:https://hi0a.com/demo/-css/css3-selecter/

ABOUT

hi0a.com 「ひまアプリ」は無料で遊べるミニゲームや便利ツールを公開しています。

プログラミング言語の動作デモやWEBデザイン、ソースコード、フロントエンド等の開発者のための技術を公開しています。

必要な機能の関数をコピペ利用したり勉強に活用できます。

プログラムの動作サンプル結果は画面上部に出力表示されています。

環境:最新のブラウザ GoogleChrome / Windows / Android / iPhone 等の端末で動作確認しています。

画像素材や音素材は半分自作でフリー素材配布サイトも利用しています。LINK参照。

動く便利なものが好きなだけで技術自体に興味はないのでコードは汚いです。

途中放置や実験状態、仕様変更、API廃止等で動かないページもあります。