在上面的代码中我想隐藏“美国”字样.我在美国之后隐藏了这张图片,但无法找到隐藏这个“美国”字样的方法.什么可能是隐藏它的代码?
最佳答案
像这样的东西?
.padd10_m {
font-size: 0px;
}
.padd10_m > * {
font-size: 14px;
/* Apply normal font again */
}
要么
如果你想使用JavaScript(我不明白为什么),这是解决方案:
var pad = document.querySelector('.padd10_m');
Array.prototype.forEach.call(pad.childNodes,function(el) {
if (el.nodeType === 3) { // check if it is text node
pad.removeChild(el); // remove the text node
}
});
原文链接:/html/426606.html