怎么给html标签写css样式?

怎么给html标签写css样式


RISEBY
浏览 861回答 2
2回答

狐的传说

1、直接使用行内样式,即在html标签上使用style1<div&nbsp;style="width:100px;height:100px;background:red;">div内容</div>2、先定义css样式,再给html的class属性赋值1234567891011<style>.content{&nbsp;&nbsp;&nbsp;&nbsp;width:100px;&nbsp;&nbsp;&nbsp;&nbsp;height:100px;&nbsp;&nbsp;&nbsp;&nbsp;background:red;}</style>&nbsp;<div&nbsp;class="content">&nbsp;&nbsp;&nbsp;&nbsp;div测试内容</div>总结:两种方式效果是一致的,只是第二种方式可进行重用,只要html元素class属性相同即可

冉冉说

123456<style>.a{hegith:30px;}</style><div&nbsp;class="a"></div>等同于<div&nbsp;class="a"&nbsp;style="height:30px;"></div>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5