<div class="container">
<div class="first"></div>
<div class="second"></div>
<div class="third"></div>
</div>
.first , .second, .third {
width: 100px;
height: 100px;
border: 3px solid red;
margin-left: 10px;
}
.container {
display: flex;
justify-content: center;
position: relative;
}
.third {
position: absolute;
right: 0;
}
[
{ "keys": ["ctrl+с"], "command": "copy" },
{ "keys": ["ctrl+ч"], "command": "cut" },
{ "keys": ["ctrl+м"], "command": "paste" },
{ "keys": ["ctrl+я"], "command": "undo" },
{ "keys": ["ctrl+shift+я"], "command": "redo" },
{ "keys": ["ctrl+ы"], "command": "save" },
{ "keys": ["ctrl+."], "command": "toggle_comment"},
]
var textTotal = $('.cart_count_goods').text();
var number = textTotal.replace(/D/g, '');
var newNumber = number++;
newText = textTotal.replace(number, newNumber);
$('.cart_count_goods').text(newText);