Question : Mouseover on div.a changes layout of div.b (pure CSS)

Take the following html. Is it possible to get the following effect: hovering the mouse over AAA results in the change of the layout of BBB. I can do this in javascript, I just wonder if there is a pure CSS solution. I cannot use absolute positioning.
1:
2:
3:
<div class="a">AAA</div>
......
<div class="b">BBB</div>

Answer : Mouseover on div.a changes layout of div.b (pure CSS)

I have put this code  - from this queston http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_24858047.html?sfQueryTermInfo=1+form+pop+up

But used it in the on current event of the main form:

  Dim strLinkCriteria As String ' to keep pop up quote items in sync with the quoteID
    Dim stDocName As String
     
    stDocName = "sfrmQuoteCostingItem"
    stLinkCriteria = "[QC_quoteID]=" & Me![txtQ_quoteID]
   
   
    If CurrentProject.AllForms(stDocName).IsLoaded = False Then
          DoCmd.OpenForm stDocName
    End If
    Forms(stDocName).Filter = ""
    Forms(stDocName).Filter = stLinkCriteria
    Forms(stDocName).FilterOn = True


So far so good but I am not sure I will run into difficulties using a pop up form.

Lou
Random Solutions  
 
programming4us programming4us