K
K
Kilila2017-10-25 09:13:33
1C
Kilila, 2017-10-25 09:13:33

Why is font-family not inherited for some blocks?

Problem: css property "font-family: 'PT Sans', sans-serif;" works as it should only for the header and footer, for some reason the section tags are set to the font "sans-serif", and not "PT Sans". Those. I can't understand why the first specified font is inherited and found for the footer and header, but not for the rest of the tags.
Here is part of the CSS code, followed by classes.

html {
    box-sizing: border-box;
}

* {margin: 0px;
    padding: 0px;
    box-sizing: inherit;
}

body {
    background-color: #212b4f;
    color: #ffffff;
    font-family: 'PT Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

.page-footer {
    color: white;
    background-color: #212b4f;
}

a {
    text-decoration: none;
    color: inherit;
}

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Dmitry Kinash, 2019-07-28
@WebDev2030

I'm not a system administration guru, but the experts write:

...Thus, a 32-bit application is completely isolated from the system and other 64-bit applications. – inability to use 32-bit in-process COM objects by 64-bit processes...
(c) Source
You need to try something else for barcode printing. For example, in this publication you can take a component and an example of printing under 64x-Linux (according to the comments - a completely working solution).

N
Nion_eto, 2019-08-22
@Nion_eto

Good afternoon, the same problem was, from a 32-bit client 1s it only prints

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question