博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular] Remove divs to Preserve Style and Layout with ng-container in Angular
阅读量:6340 次
发布时间:2019-06-22

本文共 862 字,大约阅读时间需要 2 分钟。

The Angular <ng-container> is a grouping element that doesn't interfere with styles or layout because Angular doesn't put it in the DOM.

 

When we using Content Projection in a DUMP component:

We are using <ng-content> here to get projected element from the SMAR component:

Card image cap
Card Title

Some quick example text to build on the card title and make up the bulk of the card's content.

Go somewhere

 

It ends up we have a extra div in the DOM, to remove that extra div, we just need to replace 'div' with 'ng.container':

Card image cap
Card Title

Some quick example text to build on the card title and make up the bulk of the card's content.

Go somewhere

 

转载地址:http://ehhoa.baihongyu.com/

你可能感兴趣的文章
Linux基础网络设置
查看>>
pam_limits(sshd:session): unknown limit item 'noproc'
查看>>
使用ociuldr_linux导入导出oracle中的表--工作中打印表的最好解决办法
查看>>
linux加密认证全面分析
查看>>
使用反射+抽象工厂的数据访问(3)
查看>>
CYQ.Data 数据框架 V4.0 开源版本发布(源码提供下载,秋色园V2.5版本标配框架)
查看>>
sqlplus_set用法
查看>>
客户端收发邮件报错:-ERR connection refused
查看>>
U盘病毒原理分析和解决方法
查看>>
谈谈系统架构这个东西
查看>>
thunderbird 导入通讯录乱码问题解决
查看>>
[.Net线程处理系列]专题四:线程同步
查看>>
yum安装crontab
查看>>
JVM初探- 内存分配、GC原理与垃圾收集器
查看>>
Ruby和SHELL中如何遍历指定目录的文件
查看>>
LevelDB
查看>>
CentOS7下安装mysql5.6修改字符集为utf8并开放端口允许远程访问
查看>>
C#进阶系列——WebApi 跨域问题解决方案:CORS
查看>>
你真的会玩SQL吗?让人晕头转向的三值逻辑
查看>>
Unity 脚本的未来发展
查看>>