.tobuy-shance__title_accent {
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}
.fotbar-nav {
font-size: 130%;
}
ul {
display: flex;
list-style: none;
gap: 10px;
}
.nav_link {
color: #fff;
}
.end_foot {
text-align: center;
color: #fff;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
function getData() {
return new Promise(resolve => {
$.getJSON("https://www.cbr-xml-daily.ru/daily_json.js", function(data) {
const kyrs = Math.ceil(100 / data.Valute.KZT.Value * data.Valute.EUR.Value).toString().replace(/(\d)(?=(\d{3})+$)/g, '$1 ');
resolve(kurs);
});
})
}
function func1(kurs) {
console.log(kurs);
}
function func2(kurs) {
console.log(kurs);
}
async function go() {
const kurs = await getData();
$('#euro').html(kyrs);
func1(kurs);
func2(kurs);
}
go();
$input.val = args.value;
вообще непонятно, что вы собирались этим сделать.<div class="person">
<img class="person__photo" src="">
<div class="person__wrapper">
<div class="person__name">Имя фамилия</div>
<div class="person__position">Должность</div>
</div>
</div>
.person {
display: flex;
align-items: center;
gap: 1rem;
}
.person__photo {
width: 50px;
height: 50px;
border-radius: 50%;
flex-shrink: 0;
}
.person__wrapper {
display: grid;
gap: 0.25rem;
}
.person__name {}
.person__position {}
<table class="table">
<tr>
<td class="moccasin" colspan="2"> </th>
<td class="greenyellow"> </th>
</tr>
<tr>
<td class="moccasin" rowspan="2"> </td>
<td class="cyan" colspan="2"></td>
</tr>
<tr>
<td class="cyan"> </td>
<td class="greenyellow"> </td>
</tr>
</table>
<style>
.table {
width: 300px;
height: 300px;
border-spacing: 5px;
border-collapse: separate;
border: none;
}
.table td {
width: 33%;
height: 33%;
}
.moccasin {
background: moccasin;
}
.greenyellow {
background: greenyellow;
}
.cyan {
background: cyan;
}
</style>