Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Karl DeSaulniers
Ah yes. Forgot the long description. Even better! Best, Karl Sent from losPhone > On Mar 22, 2017, at 5:43 AM, Philip Taylor wrote: > > > > Karl DeSaulniers wrote: > >> As for screen readers, you could take advantage of the alt and title tags on >> images to include a description that can

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Philip Taylor
Karl DeSaulniers wrote: > As for screen readers, you could take advantage of the alt and title tags on > images to include a description that can be read aloud. And a longdesc [1] link, of course. Philip Taylor https://www.w3.org/TR/html-longdesc/ _

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Karl DeSaulniers
Hi Michelle, If this is indeed your code then #pageHeadLeft will never be round without a border-radius declaration in the css or inside a style tag. You would also be better served to use just the img instead of background-image because the container can resize to the image height IMO. Otherwise

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Michelle Konzack
Hello Philip, On 2017-03-22 09:03:02 Philip Taylor hacked into the keyboard: > But can you not, as others have suggested, round the corners of > #pageHeadLeft (i.e., the container) and set "overflow: none" so that > the portion(s) of the background image that protrude beyond the > rounded corners

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Philip Taylor
Michelle Konzack wrote: > This is what I have and is working. > >> #pageHeadLeft { background-image: url(/michelle.png); } > So if I understand it right, I can not modify the shape of an image, if > it is shown trough the CSS, mean embedded with the url() construct. But can you not, as other

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Karl DeSaulniers
This is what I was suggesting to do. .img_head { border-radius: 50%; } HTH, Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On Mar 22, 2017, at 3:51 AM, Michelle Konzack > wrote: > >> > >>.img_head { border-radius: 50%; } ___

Re: [css-d] How to use "radius" if I have no img tag?

2017-03-22 Thread Michelle Konzack
Hello to all, On 2017-03-21 15:01:31 Michelle Konzack hacked into the keyboard: > > .img_head { border-radius: 50%; } This is what I have and is working. > #pageHeadLeft { background-image: url(/michelle.png); } So if I understand it right, I can not modify the shape of an image,