[株式会社ゲームオン]
[画像1: https://prtimes.jp/i/10988/673/resize/ ]
■君の「戦闘力」はいくつ?16年間に注いだ『RED STONE』愛を診断し、感謝の「ロトボックス」をもらおう!
[画像2: https://prtimes.jp/i/10988/673/res……
[株式会社ゲームオン]
[画像1: https://prtimes.jp/i/10988/673/resize/ ]
■君の「戦闘力」はいくつ?16年間に注いだ『RED STONE』愛を診断し、感謝の「ロトボックス」をもらおう!
[画像2: https://prtimes.jp/i/10988/673/res……
[株式会社ゲームオン]
[画像1: https://prtimes.jp/i/10988/672/resize/ ]
[画像2: https://prtimes.jp/i/10988/672/resize/ ]
●2021年1月27日(水)アップデート
■好感度「愛情」等級追加
「好感度」とは、一部NPC……
<?php echo get_field (‘フィールド名’,固定ページID));?>
The post 固定ページ用カスタムフィールドの値をトップページに表示する first appeared on haikararou.
<?php $week = array(“日”, “月”, “火”, “水”, “木”, “金”, “土”); ?>
<?php $date = date_create(”.get_field(‘カスタムフィールド名’).”); echo date_format($date,’Y/m/d’) . “(” . $week[(int)date_format($date,’w’)] . “)” ; ?>
The post ACFデイトピッカーで曜日を表示 first appear…
メモ
最後の要素 + 最後から2つ目のliが奇数の場合
li:last-child,li:nth-last-child(2):nth-child(odd)
4列リストの一番左下にある要素
li:nth-child(4n+1):nth-last-child(-n+4),
4列リストの一番左下にある要素以降にあるliすべて
li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
}
The post リストの最後の行だけ、CSSを適用する first appe…
CSS
li:nth-child(2n+1):last-child {
width: 100%;
background: tomato;
}
The post 2カラムで最後の要素が1つだけだった場合にCSSを適用させる first appeared on haikararou.
メモ
HTML
<ul>
<li class=”item”></li>
</ul>
<ul>
<li class=”item”></li>
<li class=”item”></li>
</ul>
<ul>
<li class=”item”></li>
<li class=”item”></li>
<li class=”item”></li>
</ul>
CSS
/…
10万円超のHP Chromebook x360 13は高い? 日経クロストレンド
第3のPC「Chromebook」 格安&低スペックでも実力発揮|NIKKEI STYLE 日本経済新聞
最初の要素
:nth-child(2n+1):first-child
最後の要素
:nth-child(2n+1):last-child
The post css 要素が奇数のとき、最初の要素(最後の要素) first appeared on haikararou.