• This project
    • Loading...
  • Sign in

임호준 / WebPractice

%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
  • WebPractice
  • css
  • ex06.css
  • 임호준's avatar
    0328 실습 · 0a2656e2
    0a2656e2
    임호준 authored 2017-03-28 11:49:53 +0900
ex06.css 358 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 23
body{
  text-align: center;
}
a{
  color: white;
  background-color: gray;
  border-right: 1px solid white;
  padding:20px;
}
a.direction{
  color: yellow;
  background-color: gray;
  border-right: 1px solid white;
  width: 20px;
}
a.current{
  color: white;
  background-color: blue;
  border-right: 1px solid white;
}
a:hover{
  background-color: black;
}