2016년 1월 11일 월요일

[CSS3] 내부 css

<style> 태그를 사용해서 지정한다.

선택자 { 속성 : 값 } 으로 지정한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!-- index.html -->
<html>
    <head>
        <meta charset="utf-8">
        <style type="text/css">
            body{
                font-family: arial;
                background-color: rgb(185,179,175);
            }
            p{
                color:rgb(255,255,255);
            }
       </style>
        
    </head>
    <body ng-app='fruitApp'>
        <div ng-controller='controller1'>
            <p> hello {{name}} </p>
        </div>
          <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>        
          <script src="controller1.js"></script><!-- controller1.js should be declared first-->
          <script src="fruit.js"></script>
      </body>
</html>
cs

댓글 없음:

댓글 쓰기