Click here to Skip to main content
15,899,679 members
Home / Discussions / Web Development
   

Web Development

 
QuestionAlign controls left and right in sub div Pin
Mr Carl Cummings7-Jul-16 7:58
Mr Carl Cummings7-Jul-16 7:58 
QuestionDoes Sitefinity CMS support SAML 2.0 ? Pin
Member 10977363-Jul-16 19:27
Member 10977363-Jul-16 19:27 
AnswerRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Peter_in_27803-Jul-16 19:59
professionalPeter_in_27803-Jul-16 19:59 
GeneralRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Member 10977363-Jul-16 20:44
Member 10977363-Jul-16 20:44 
GeneralRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Member 10977363-Jul-16 20:45
Member 10977363-Jul-16 20:45 
AnswerRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Peter_in_27803-Jul-16 20:50
professionalPeter_in_27803-Jul-16 20:50 
AnswerRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Kimberly Weldon4-Jul-16 2:25
Kimberly Weldon4-Jul-16 2:25 
GeneralRe: Does Sitefinity CMS support SAML 2.0 ? Pin
Member 10977364-Jul-16 20:28
Member 10977364-Jul-16 20:28 
Questionhtaccess issues Pin
V.30-Jun-16 23:41
professionalV.30-Jun-16 23:41 
AnswerRe: htaccess issues Pin
Peter_in_27801-Jul-16 12:34
professionalPeter_in_27801-Jul-16 12:34 
AnswerRe: htaccess issues Pin
Member 1070601422-Jul-16 8:15
Member 1070601422-Jul-16 8:15 
GeneralGetting a Response from an Iframe Pin
Brian Kron29-Jun-16 9:23
Brian Kron29-Jun-16 9:23 
GeneralRe: Getting a Response from an Iframe Pin
2374130-Jun-16 11:54
2374130-Jun-16 11:54 
GeneralRe: Getting a Response from an Iframe Pin
Brian Kron30-Jun-16 13:38
Brian Kron30-Jun-16 13:38 
GeneralRe: Getting a Response from an Iframe Pin
2374130-Jun-16 14:56
2374130-Jun-16 14:56 
GeneralRe: Getting a Response from an Iframe Pin
Brian Kron1-Jul-16 4:01
Brian Kron1-Jul-16 4:01 
GeneralRe: Getting a Response from an Iframe Pin
F-ES Sitecore4-Jul-16 4:08
professionalF-ES Sitecore4-Jul-16 4:08 
QuestionCSS, css class that will modify a previous css class if used Pin
jkirkerx28-Jun-16 8:08
professionaljkirkerx28-Jun-16 8:08 
AnswerRe: CSS, css class that will modify a previous css class if used Pin
Richard Deeming28-Jun-16 8:43
mveRichard Deeming28-Jun-16 8:43 
It's not entirely clear what you're asking - the CSS example you've posted completely changes the style of the same <div> element depending on whether or not it has the delete class, but that doesn't seem to match the earlier description.

Perhaps you could create a simple example in JSFiddle[^]?

Based on your description, and assuming you're using a modern browser[^], I'd be inclined to use Flexbox[^]:
HTML
<div class="record">
  <div class="data">
    Data goes here
  </div>
</div>
<div class="record">
  <div class="data">
    Data goes here
  </div>
  <div class="commands">
    Commands go here
  </div>
</div>
<div class="record">
  <div class="data">
    Data goes here
  </div>
</div>

.record
{
  display: flex;
}
.record > div
{
  padding: 10px;
  outline: 1px dotted blue;
}
.record .data
{
  flex-grow: 1;
}
.record .commands
{
  width: 10%;
  background: #a00;
  color: #fff;
}

Example[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: CSS, css class that will modify a previous css class if used Pin
jkirkerx29-Jun-16 6:12
professionaljkirkerx29-Jun-16 6:12 
AnswerRe: CSS, css class that will modify a previous css class if used Pin
faizan ali28-Jun-16 21:11
faizan ali28-Jun-16 21:11 
GeneralRe: CSS, css class that will modify a previous css class if used Pin
jkirkerx29-Jun-16 6:14
professionaljkirkerx29-Jun-16 6:14 
QuestionHelp in phone page Pin
Member 1259994323-Jun-16 0:17
Member 1259994323-Jun-16 0:17 
AnswerRe: Help in phone page Pin
CHill6023-Jun-16 1:54
mveCHill6023-Jun-16 1:54 
AnswerRe: Help in phone page Pin
Member 1259994323-Jun-16 9:27
Member 1259994323-Jun-16 9:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.