如何在角组件中设置嵌套组件的样式?

时间:2019-05-29 13:32:37

标签: html css angular sass

我在组件内有一个组件,但我不知道如何在css文件中设置其样式。我尝试了很多不同的方法,但是没有用。

所以看起来像这样:

outter.component.html

UITableView

my-custom-component.component.html   

和来自outter.component.scss 我要添加

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "CellRID") as! PaymentCell
            if selectedIndexPath != nil && indexPath == selectedIndexPath {
                cell.btnCheckUnCheck.setImage(UIImage(named: "CheckTerm"), for: .normal)
            } else {
                cell.btnCheckUnCheck.setImage(UIImage(named: "uncheckTerm"), for: .normal)
            }
        return cell
    }

我想将样式应用于我的嵌套组件。我尝试了:host >>> i {},:: shadow和其他方法,但是没有用。

0 个答案:

没有答案