跨浏览器兼容性宽度问题

问题描述 投票:0回答:2

this site一直在给我一些关于平板电脑和手机样式的跨浏览器兼容性的元素宽度的问题。

该课程是.p_phoneand .p_phone a

  .p_phone {
    font-size: 20px;
    width: 145px;
    left: 40%;
    margin: 0 !important;
    height: 30px;
    opacity: 1;
    top: -4px;
    text-align: center;
    color: #fff;
    position: relative;
  }

  .p_phone a {
    color: #fff;
    background-color: #1968a1;
    font-weight: 800;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

基本上,它需要匹配这个类的宽度,这是一个图像,它在chrome和opera上,但在safari,firefox和edge上,它不匹配,并打破到下一行。

  .p_call {
    font-size: 20px !important;
    top: -13px;
    left: 40%;
    width: 145px;
    margin: 0;
    background-image: url(http://dchna4xuxekpx.cloudfront.net/wp-content/uploads/2016/06/15142416/call-us.png);
    vertical-align: middle;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    float: left;
    padding: 0;
  }

将宽度增加到150px可以修复它,但是对于图像来说太宽了。

它需要如何:enter image description here

html css responsive-design cross-browser
2个回答
1
投票

尝试更改这些类(已在此link provided by you上检查过它们)

.textwidget {
  font-size: 18px;
  position: relative;
  width: 160px;
  margin: auto;
}
.p_call {
  font-size: 20px !important;
  top: -13px;
  left: 40%;
  margin: 0px;
  background-image: url('http://dchna4xuxekpx.cloudfront.net/wp-content/uploads/2016/06/15142416/call-us.png');
  vertical-align: middle;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  float: left;
  padding: 0px;
  width: 100%;
  background-size: 100%;
}
.p_phone {
  font-size: 20px;
  margin: 0px !important;
  height: 30px;
  opacity: 1;
  top: 27px;
  text-align: center;
  color: #FFF;
  position: absolute;
  width: 100%;
  left: 40%;
}
.p_phone a {
  color: #FFF;
  background-color: #1968A1;
  font-weight: 800;
  padding: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: inline-block;
  width: 100%;
}

属于p_call类和p_phone的div没有被textwidget类正确包裹。因此我们必须给出两个不同的宽度,现在因为textwidget包装了两个类,它们将具有相同的宽度。希望能帮助到你。测试了chrome和firefox。


1
投票

尝试将其添加到.p_phone a的样式块中:

white-space: nowrap;
© www.soinside.com 2019 - 2024. All rights reserved.