@media screen and (max-height: 200px) { /* задайте нужную минимальную высоту окна */
#buttom { /* по-английски правильно "bottom" */
display: none; /* изменяйте поведение элемента как сочтете нужным */
}
}
extends ./layout.pug
block content
div some content
extends ./layout.pug
block content
div this content isn't inside a block
$( "#success" ).load( "/not-here.php", function( response, status, xhr ) {
if ( status == "error" ) {
var msg = "Sorry but there was an error: ";
$( "#error" ).html( msg + xhr.status + " " + xhr.statusText );
}
});