试图在CSS中绘制图像

时间:2017-09-10 10:05:11

标签: android css image mobile mobile-browser

我试图保存网络请求,这就是为什么我想在CSS中实现我的移动页面的关闭按钮。 我使用img2css网站生成css,这是我的解决方案: 但在旧的移动设备上它看起来很糟糕:   Here is a screenshot from Android 4.3 左侧是原始图像右侧的css解决方案。所以你看到css有点难看。 有关如何在CSS中绘制这个简单的关闭按钮的任何建议吗?

1 个答案:

答案 0 :(得分:0)

你可以简化这个,并学习一些基本的CSS:



span.close
{
  display:block;
  width:32px;
  height:32px;
  color:#666;
  border:1px solid #666;
  border-radius:50%;
  font-size:28px;
  line-height:1;
  text-align:center;
}

 <span class="close">&times;</span>
&#13;
&#13;
&#13;