JSFiddle - React, Tailwind, and code Playground
by 규연 황
HTML
<dl>
<dt>dd</dt>
<dd>fdsfs</dd>
</dl>
<dl>
<dt>dd</dt>
<dd></dd>
</dl>
CSS
dl dt {
}
dl dd:before {
content: '000. ';
}
dl dd:empty:before {
content: none;
}
by 규연 황
<dl>
<dt>dd</dt>
<dd>fdsfs</dd>
</dl>
<dl>
<dt>dd</dt>
<dd></dd>
</dl>
dl dt {
}
dl dd:before {
content: '000. ';
}
dl dd:empty:before {
content: none;
}