第1个回答 2018-03-20
内部样式一般都是直接写css,如
1、<div style="width:100px; height:100px;"></div>
2、<style type=text/css>
.tttt{
height:100px;
width:100px;
}
</style>
外部调用一般会给元素命名如:如
<div class="tttt"></div>
<link rel="stylesheet" type="text/css" href="css路径">
.tttt{
width:100px;
height:100px;
}