Safari иногда не центрирует текст по горизонтали - PullRequest
0 голосов
/ 14 октября 2019

Я пытаюсь центрировать текст на фотографии. Он отлично работает в chrome / mozilla, хотя есть проблемы с Safari. Вот скриншоты div из разных браузеров:

Safari: safari

Chrome: chrome

Когда страница обновляется в Safari, текст часто центрируется.

У меня нет идей, как это исправить.

HTML:

<div id="giftsHeaderPhoto" class="akcija">
  <div class="subCategoryName">
    <h1 > Grožis </h1>
  </div>

  <div class="intro_block">
    <div class="intro_text">
      <div class="intro_text-short">
        <span>{$intro_text}</span>
      </div>
      <div class="intro_text-buttonBox">
         <span class="buttonShowMore">Plačiau</span>
      </div>
    </div>
  </div>

</div>

SCSS:

#giftsHeaderPhoto {
    width: 100%;
    height: 350px;
    background-size: 1920px 350px;
    background-position: center top;
    background-color: white;
    margin-top: 0px;
    position: relative;
    z-index: 2;
    &::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        transition: background-color 0.3s;
    }
    &:hover::after {
        background-color: rgba(0,0,0,0.5);
        transition: background-color 0.3s;
    }
    .subCategoryName {
        width:80%;
        margin: auto;
        padding-top: 80px;
        padding-bottom: 40px;
        color:rgba(white, 0.8);
        text-align:center;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 300ms;
        letter-spacing: 15px;
        h1 {
            font-weight: 1000;
            color: white;
        }

Ожидаемое поведение: класс subCategoryName равенвсегда центрирован в любом браузере.

Результат: класс subCategoryName иногда в Safari правее.

Ответы [ 2 ]

0 голосов
/ 14 октября 2019

Вы можете использовать этот код

        body {
            margin: 0px;
        }
        #giftsHeaderPhoto {
            width: 100%;
            height: 350px;
            background-size: 1920px 350px;
            background-position: center top;
            background-color: white;
            margin-top: 0px;
            position: relative;
            z-index: 2;
        }
        #giftsHeaderPhoto::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s;
        }
        #giftsHeaderPhoto:hover::after {
            background-color: rgba(0, 0, 0, 0.5);
            transition: background-color 0.3s;
        }
        .subCategoryName {
            width: 80%;
            margin: 0 auto;
            padding-top: 80px;
            padding-bottom: 40px;
            color: rgba(white, 0.8);
            text-align: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 300ms;
            letter-spacing: 15px;
        }
        h1 {
            font-weight: 1000;
            color: white;
            text-align: center;
        }
        .intro_block {
            text-align: center;
            margin: 0 auto;
        }
<div id="giftsHeaderPhoto" class="akcija">
        <div class="subCategoryName">
            <h1> Grožis </h1>
        </div>
        <div class="intro_block">
            <div class="intro_text">
                <div class="intro_text-short">
                    <span>{$intro_text}</span>
                </div>
                <div class="intro_text-buttonBox">
                    <span class="buttonShowMore">Plačiau</span>
                </div>
            </div>
        </div>
    </div>
0 голосов
/ 14 октября 2019

Попробуйте это,

Добавьте свойство

margin: auto;

к контейнеру div, т. Е. Родительский div, в котором содержатся все ваши подразделения.

также обеспечивает,

text-align: center;

к фактическому элементу, который должен быть центрирован.

, если ничего не работает, тег <center>...</center> может помочь.

Вы также можете сослаться на эту ссылку для деталей.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...