Jump to content
php.lv forumi

problēma ar div


edi

Recommended Posts

Uzliec div'am mainbox vēl šādu parametru overflow: auto;, tad garajām rindām vajadzētu attēloties korekti.

 

Vēl vari arī paspēlēties ar tagu nowrap, kas neļauj garas rindas lauzt un attēlot vairtākās rindās.

Link to comment
Share on other sites

Uzliec div'am mainbox vēl šādu parametru overflow: auto;, tad garajām rindām vajadzētu attēloties korekti.

 

Vēl vari arī paspēlēties ar tagu nowrap, kas neļauj garas rindas lauzt un attēlot vairtākās rindās.

 

ne white-space:nowrap; ne ari overflow: auto; nepalidz

Link to comment
Share on other sites

Kas tev jālabo savā CSS failā:

 

1. iekš mainbox pievieno šādas rindas:

    position: absolute;

    left: 230px;

    overflow: auto;

 

2. iekš leftbox pievieno tādus pašas augstum definčijas, kā  mainbox sadaļā:

    min-height: 530px;

    height: auto !important;

    height: 530px;

 

CSS definīcijām vajadzētu būt šādām:

.leftbox {


    float: left;
    width: 230px;
    min-height: 530px;
    height: auto !important;
    height: 530px;
}
.mainbox {
    float: left;
    line-height: 17px;
    min-height: 530px;
    height: auto !important;
    height: 530px;
    padding: 0 15px;
    border-left: 1px dotted #a5ceee;
    position: absolute;
    left: 230px;
    overflow: auto;
}

 

Tad visam vajadzētu strādāt. 

Link to comment
Share on other sites

Kas tev jālabo savā CSS failā:

 

1. iekš mainbox pievieno šādas rindas:

position: absolute;

left: 230px;

overflow: auto;

 

2. iekš leftbox pievieno tādus pašas augstum definčijas, kā mainbox sadaļā:

min-height: 530px;

height: auto !important;

height: 530px;

 

CSS definīcijām vajadzētu būt šādām:

.leftbox {


float: left;
width: 230px;
min-height: 530px;
height: auto !important;
height: 530px;
}
.mainbox {
float: left;
line-height: 17px;
min-height: 530px;
height: auto !important;
height: 530px;
padding: 0 15px;
border-left: 1px dotted #a5ceee;
position: absolute;
left: 230px;
overflow: auto;
}

 

Tad visam vajadzētu strādāt.

nepalidz, ar absolute visu tekstu nerada :D

Edited by edi
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...