Тёмный

Webflow Tags - What Are They?! 

Samuel Gregory (0x5am5)
Подписаться 6 тыс.
Просмотров 774
50% 1

Опубликовано:

 

18 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 13   
@sumitraj6878
@sumitraj6878 Год назад
Subscribed to your channel coz i think its a goldmine for web developers! will watch all of your videos and try to take away the maximum amout of value! Keep uploading!!! cheers!!!
@webflowandcode
@webflowandcode Год назад
Really appreciate that. Thanks for subscribing!
@JacobODonnellDesign
@JacobODonnellDesign 10 месяцев назад
Hey, I have a question about the text element in Webflow. So it seems to be just a div block based off looking through the custom code export. Is there a reason to ever use this instead of just using a paragraph element? I've gone through freeCodeCamp's HTML & CSS course before learning Webflow, and they never put text directly inside div tags, so this seems weird to me. I'm currently going through a Client-First Live Build Tutorial from Finsweet, and they seem to make use of the text element quite often. Is this bad from an accessibility/SEO standpoint?
@webflowandcode
@webflowandcode 10 месяцев назад
Interesting thing you’ve picked up here. Something I hadn’t noticed. Historically it actually was invalid HTML to put text directly inside a div! Technically it’s not wrong to but it’s not right either. I would personally stick to using Paragraphs. Both Paragraphs and Divs are block-level elements so stylistically are similar but P’s are FOR SURE semantically correct and better for SEO but realistically a text block won’t really harm anything.
@JacobODonnellDesign
@JacobODonnellDesign 10 месяцев назад
@@webflowandcode That was mostly what I was assuming. Thanks for the response!
@webflowandcode
@webflowandcode 10 месяцев назад
Glad to help
@user-nb7hk8uk8x
@user-nb7hk8uk8x Год назад
Question, can we export the code from webflow and integrate it into react and proceed building it as such or is it not compatible with react?
@webflowandcode
@webflowandcode Год назад
Yes because the exported code is just HTML. Though, take a look into Devlink. I have a video in that
@user-nb7hk8uk8x
@user-nb7hk8uk8x Год назад
I have been able to integrate the webflow html into react but the javascript of webflow is so huge, how would you integrate that into a react project and does Devlink help with that?@@webflowandcode
@jo69123
@jo69123 8 месяцев назад
is there a way to overwrite HTML tags? I see now that my tags were made in all the wrong ways would love to change all h2s to h3s or h4s for example, without shit changing
@webflowandcode
@webflowandcode 8 месяцев назад
What do you mean “overwrite”? Just click on a heading and choose its tag. With Div blocks check under Element settings to choose its tag.
@jo69123
@jo69123 8 месяцев назад
@@webflowandcode well when I change the tag it inherits the CSS from the other H’s
@webflowandcode
@webflowandcode 8 месяцев назад
Sounds like a bit of CSS management is in order. It should either take the style of whatever heading you’re changing it to or maintain the styles related to the classes. I don’t know how you’ve organised your styles