我有一個名爲「ExplanationLists」的React組件,我想用css僞代碼li::after
將動態內聯樣式添加到li
html元素中,我可以將樣式與圖形更好的點點。例如,css僞代碼「li :: before」反應內聯樣式
li::before {
content: dynamic_content;
}
但是,我無法真正實現它。任何建議,將不勝感激。
下面是我寫的代碼。
class ExplanationLists extends Component{
populateHtml(){
// asign lists data into variable "items"
var items = this.props.items;
// loop though items and pass dynamic style into li element
const html = items.map(function(item){
var divStyle = {
display: "list-item",
listStyleImage:
'url(' +
'/images/icons/batchfield_fotograf_rosenheim_icon_' +
item.icon +
'.png' +
')'
};
// html templating
return (
<li style={divStyle}>
<h3 >{item.title}</h3>
<p>{item.desc}</p>
</li>
);
});
// return html
return html;
}
render(){
return (
<ul>
{this.populateHtml()}
</ul>
)
}
}
你爲什麼不簡單地在你的''li'元素上使用'className',然後用普通的CSS來設計呢? –