ip: 18.118.205.165 DKs blog - CSS examples

DK's Blog

CSS examples

sample of class for table:

 


 

example of class tablica

table.tablica {
    border: 1px solid black;
    padding:0;
    margin:0;
}

table.tablica tr {
    background-color: #ffffff;
}

table.tablica tr td {
    width: 200px;
    height: 30px;
}

 


anchor example, all states of anchor tag make the same

 

a.pero {
  color: #121212;
  font-size: 12px;
  text-decoration: none;
}

a.pero:hover, a.pero:visited, a.pero:active, a.pero:link {
  color: #121212;
  font-size: 12px;
  text-decoration: none;
}

@2016