A
A
Adelimbo2014-07-24 15:15:52
css
Adelimbo, 2014-07-24 15:15:52

What is an undeclared identifier?

586461d5ce6d40139cbc00dfbf0a853d.PNG
how to fix on Delphi 7?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
D
devstudent, 2016-04-21
@klonor

<div class="carte">
   <div class="overlay">
  <div class="carte__item">
    <p> gojgiojirogjioegjeiogj gojgiojirogjioegjeiogj
    </p>
    </div>
   <div class="carte__item">
     <p> gojgiojirogjioegjeiogj gojgiojirogjioegjeiogj
    </p>
    </div>
  </div>
  <div class="overlay">
   <div class="carte__item">
    <p> gojgiojirogjioegjeiogj  
    </p>
    </div>
   <div class="carte__item">
    <p> gojgiojirogjioegjeiogj gojgiojirogjioegjeiogj gojgiojirogjioegjeiogj gojgiojirogjioegjeiogj
    </p>
    </div>
  </div>
</div>

@use postcss-nested;
@use cssnext;
.carte{
  width: 440px;
  text-align: center;
  vertical-align: bottom;
  font-size:0;
  &__item{
    width: 90%;
   font-size:20px;
   background:gray;
   display:inline-block;
   margin:20px auto 5px;
  }
}
.overlay {
  width: 50%;
  position: relative;
  display: block;
  float: left;
}

you need to make a wrapper for each column of content

D
Dmitry Novikov, 2016-04-21
@dmitriy_novikov

masonry.desandro.com

A
Alex, 2016-04-21
@streetflush

.col{
  width: 45%;
  display:inline-block;
 float: left;
}

<div class="carte">
<div class="col">
<div class="carte__item">1</div>
 <div class="carte__item">2</div>
  </div>
  <div class="col">
 <div class="carte__item">3</div>
 <div class="carte__item">4</div>
</div>
 </div>

E
Eugene, 2014-07-24
@EvgenijDv

"Your song is good, start over..."
You were answered in your previous question, why another question? Delphi 7 does not have this property - accept it. Either use a more recent version of the IDE, or don't use this feature.

A
AlexP11223, 2014-07-24
@AlexP11223

And how did it happen that in the last question you yourself asked in which version this property exists, then you also clarified "whether the error will disappear if you install a newer delphi?" (it seems to be so obvious from your statement of the first question), and now all of a sudden this new strange question was asked? :)

T
tsarevfs, 2014-07-24
@tsarevfs

Where did you get LineBrek from? Read about DelimitedText .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question