JSFiddle - React, Tailwind, and code Playground

by Tìm ở đây Khoá học CNTT

HTML

<h2>Bộ chọn [attribute~="value"]</h2>
<p>Tất cả ảnh với thuộc tính tiêu đề chứa từ "flower" có đường viền màu vàng.</p>

<img src="https://timoday.edu.vn/wp-content/uploads/2021/06/klematis.jpg" title="klematis flower" width="150" height="113">
<img src="https://timoday.edu.vn/wp-content/uploads/2021/06/img_flwr.gif" title="flower" width="224" height="162">
<img src="https://timoday.edu.vn/wp-content/uploads/2021/06/img_tree.gif" title="tree" width="200" height="358">

CSS

[title~=flower] {
  border: 5px solid yellow;
}