博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular] Style HTML elements in Angular using ngStyle
阅读量:6689 次
发布时间:2019-06-25

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

We will learn how to make use of the ngStyle directive to directly add multiple style attributes to a DOM element as a style property. We’ll also learn how we can make these styles more dynamic through user input.

 

import { Component } from '@angular/core';@Component({  selector: 'ngstyle-component',  template: `    
Here are some inline styles!

`})export class NgStyleComponent { borderStyle = { border: '1px solid black', 'border-radius': '3px', 'width.px': 200, padding: '15px' }; updateStyle(width) { this.borderStyle['width.px'] = width; }}

Notice that when we use ngStyle, we are able to add '.unit' to the style.

'width.px': 200,

 

If not useing this syntax, you need to do:

width: '200px'

 

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

你可能感兴趣的文章
这个女孩一路走来--我的it,我的命
查看>>
Webbuilder Extjs中Combobox值选中注意事项
查看>>
我的友情链接
查看>>
svn 实践
查看>>
在 PowerShell 中使用 SQL Server (3)
查看>>
我的友情链接
查看>>
CSS元素定位
查看>>
质量时代——“Jolt大奖精选丛书”有奖征文
查看>>
Python list方法总结
查看>>
DNS服务器维护命令
查看>>
PHP DES加密解密封装类
查看>>
python 之time和datetime的搭配秘密
查看>>
授之以渔-运维平台应用模块三(BIND篇)
查看>>
初始API编程
查看>>
【NetDIY应用开发-01】Hello world
查看>>
六、用户与权限
查看>>
面向机器学习数据平台的设计与搭建
查看>>
centos6.7 编译安装mysql-5.6.27
查看>>
spring cloud 整合zpkin问题
查看>>
Maven下载慢的解决方案
查看>>