dl

How to style dt and dd so they are on the same line?

Using CSS, how can I style the following: <dl> <dt>Mercury</dt> <dd>Mercury (0.4 AU from the Sun) is the closest planet to the Sun and the smallest planet.</dd> <dt>Venus</dt> <dd>Venus (0.7 AU) is close in size to Earth, (0.815 Earth masses) and like Earth, has a thick silicate mantle around an iron core.</dd> <dt>E...

Styling the DD tag

I am using dl,dt and dd tags in one of my project . Now I want give a bullet before dd . How can I make my dd's to a bulleted list using css ? Any Ideas ??? ...

how to style margins between items in a <dl> list ?

hey folks, So im integrating this Twitter widget into xhtml. ( http://help.twitter.com/forums/10711/entries/15354 ) The code is: <dl id="twitter_update_list"></dl> ...then a couple lines of javascript. My problem is that I can't figure out how to get any space between the list items. All i need are a couple br tags in between eac...

IE letting URLS break the containing DIV, but FF shows fine. Fix?

hey folks, So im integrating this Twitter widget into xhtml. ( http://help.twitter.com/forums/10711/entries/15354 ) The code is: <dl id="twitter_update_list"></dl> ...then a couple lines of javascript. Heres the issue. Why would IE display long urls (links within the list item) as breaking the containing DIV? Meanwhile FF just c...

DL Query Protege with JAVA

hi, I want to create simple application using Java Jena and DL Query,that query the OWL/RDF data I worked on protege to create the ontology. I want to use DL Query using java and jena ... there is an JAVA-API for DL Query? or included in Protege API? what is the advantage of "DL Query" to "SPARQL"? ...

Using Shared DLLs and adding UI Attributes to classes

I have a Server/Client project with WCF communications and sharing a dll between both with Contracts and objects: Service | Shared Objects | Client For my Objects I added attributes for use in the propertygrid : [DataMember] [DisplayName("Javascript File Name")] [Description("The browseable path of the Javascript fil...

How best to structure a definition list with accessibility in mind

I have a dl that I've coded like so: <dl> <dt>term 1</dt> <dd>definition 1</dd> <dt>term 2</dt> <dd>definition 2</dd> <dt>term 3</dt> <dd>definition 3</dd> </dl> I'm finding it hard to apply the right css for the layout that i want ie. each term and definition in a column. structuring the html in the following way wo...