R
R
redSKY2019-10-30 15:09:14
PHP
redSKY, 2019-10-30 15:09:14

Nesting blocks across the entire height?

Good afternoon. I'm interested in this question: how to arrange the blocks over the entire available height and so that there are no gaps (in height between them), or what should I read? I'm only interested in the css solution. In my example, the blocks are based on the height of the neighbor and a gap appears.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
I
Ilya Loginov, 2018-09-11
@DarkByte2015

Most likely you don't have permission to write to the directory, use the is_writable function to check before saving. If the directory is not writable, then you can change the permissions via the console using the chmod command. Or through filezila and other file managers.

T
ThunderCat, 2018-09-11
@ThunderCat

1) As noted above - the first thing to check is write permissions
2) Also make sure that the folder exists at all (rather, even this needs to be checked first)
3) Make sure that the path, programmatically generated, points to the desired folder,
4) Specify the FULL path, from the root of the server file system, something like

$fullPath = $_SERVER['DOCUMENT_ROOT'].'path/to/file.png';

V
Vladislav Lyskov, 2019-10-30
@redSKY

replace your whole wrapper

.wrapper{
  width: 700px;
  columns: 2;
}

R
redSKY, 2019-10-30
@redSKY

Probably the only solution. it is each column to typeset separately. I didn't find anything else myself.

A
Andrew, 2019-10-30
@uselessmindYEAH

.el {
   flex-grow: 1;
   background-color: gray;
   margin:4px;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question