• This project
    • Loading...
  • Sign in

정현희 / WS

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • WS
  • css_practice2.css
  • 정현희's avatar
    2017.03.28 CSS실습 · c707a705
    c707a705
    정현희 authored 2017-03-28 11:58:40 +0900
css_practice2.css 283 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*ex02.css*/

a:link, a:visited
{
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: white;

  padding: 10px;
  background-color: gray;
}

a:hover
{
  color: yellow;
  background-color: black;
}

a.direction:link, a.direction:visited
{
  color: yellow;
}