-1
.button1{


  background: #E68A00 url(wooden.jpg) repeat-x;
  border: 2px solid #eee;
  height: 28px;
  width: 115px;
  margin: 50px 0 0 50px;
  padding: 0 0 0 7px;
  overflow: hidden;
  display: block;
  text-decoration:none;
  font-family: 'Sacramento', cursive;
  color : white;
  font-size: 30px;




  /*Rounded Corners*/
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;

/*Gradient*/
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));

/*Transition*/
-webkit-transition: All 0.5s ease;
-moz-transition: All 0.5s ease;
-o-transition: All 0.5s ease;
-ms-transition: All 0.5s ease;
transition: All 0.5s ease;


}

pg.button1{ 
position:absolute;
right:0px;
top:100px;

}

pg:hover {
  width: 200px;
}






<pg <a class = "button1" href="http://www.google.com">Small $14 </a>  </pg>## Heading ##

上面的标签是一个链接,直到我引入了标签 pg,它是为了在屏幕上定位链接。原因是我仍然想将该类与其他对象一起使用!所以我不必复制我的代码!我已经创建了像 p1 p2 p3 p4 这样的标签来与同一个类一起使用它实际上定位它,但它不再是一个链接!这是为什么 ?我怎样才能让它再次工作?

4

1 回答 1

1

与其发明新标签,不如使用多个类。在这种情况下,根据您实际尝试执行的操作,您可以执行以下操作:

<a class="button1 pg" href="...">Small $14</a>

或这个:

<div class="pg"><a class="button1" href="...">Small $14</a></div>
于 2013-03-17T18:50:24.567 回答